https://github.com/alixunxing/regnet-search-pytorch
Search for RegNet using PyTorch
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.2%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
Repository
Search for RegNet using PyTorch
Basic Info
- Host: GitHub
- Owner: alixunxing
- License: mit
- Default Branch: master
- Size: 75.2 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Fork of zhanghang1989/RegNet-Search-PyTorch
Created over 5 years ago
· Last pushed almost 6 years ago
https://github.com/alixunxing/RegNet-Search-PyTorch/blob/master/
# Search-RegNet-PyTorch Implemention for neural architecture search of [RegNet](https://arxiv.org/abs/2003.13678) using PyTorch and [AutoTorch](http://autotorch.org/). This example and [Fast AutoAugment](https://github.com/zhanghang1989/Fast-AutoAug-Torch) will be used in the tutorial on [From HPO to NAS: Automated Deep Learning](https://hangzhang.org/CVPR2020/) at CVPR 2020. | model| ref | Acc | config | |------|------|------|---| | RegNet-0.4GF| official | 72.38 | [link](./configs/RegNetX-0.4GF.ini) | | RegNet-0.4GF| ours | 72.18 | [link](./gen_configs/RegNet-0.4GF/ResNet-0.4GF-1.ini) | | RegNet-4.0GF| official | 79.03 | [link](./configs/RegNetX-4.0GF.ini) | `official`: using official configuration. `ours`: using our searched configuration. Training HP setting: `` learning rate: 0.2, batch size: 512, weight decay: 1e-4, `` ## Quick Start ### Install Dependencies - Install PyTorch, following the [instruction](https://pytorch.org/get-started/locally/). - Install other dependencies: ```bash pip install autotorch thop torch-encoding ``` - Install Apex (optional): ``` git clone https://github.com/NVIDIA/apex cd apex pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./ ``` ### Test #Params and FLOPs from config file ```bash python test_flops.py --config-file configs/RegNetX-4.0GF.ini ``` ## Single Model Training ### Prepare ImageNet Dataset ``` cd scripts/ # assuming you have downloaded the dataset in the current folder python prepare_imagenet.py --download-dir ./ ``` ### Train a single model from a config file ```bash python train.py --dataset imagenet --config-file configs/RegNetX-4.0GF.ini --lr-scheduler cos --epochs 120 --checkname default --lr 0.025 --batch-size 64 --amp ``` ## Architecture Search ### Generate config files with expected GFLOPs ```bash python generate_configs.py --gflops 4 --num-configs 32 --config-file configs/RegNetX-4.0GF ``` The generated configuration files will be saved as `configs/RegNetX-4.0GF-1.ini`, `configs/RegNetX-4.0GF-2.ini` ... ### Search best model for the config files in a folder In this example, each model will be trained using a single gpu for 25 epochs. ```bash python search.py --config-file-folder gen_configs/RegNet-0.4GF/ --output-folder out_configs/ --epochs 25 ``` The accuracy will be written into the output config file after training.
Owner
- Login: alixunxing
- Kind: user
- Repositories: 18
- Profile: https://github.com/alixunxing