mmrazor/configs/nas/mmcls/spos
XiaotongLu 0b24276158
[Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406)
* Copybook

* Newly created copy PR

* Newly created copy PR

* update op_counters

* update subnet/commit/FLOPsCounter

* update docs/UT

* update docs/UT

* add setter for current_mask

* replace current_mask with activated_tensor_channel

* update subnet training

* fix ci

* fix ci

* fix ci

* fix readme.md

* fix readme.md

* update

* fix expression

* fix CI

* fix UT

* fix ci

* fix arch YAMLs

* fix yapf

* revise  mmcv version<=2.0.0rc3

* fix build.yaml

* Rollback mmdet to v3.0.0rc5

* Rollback mmdet to v3.0.0rc5

* Rollback mmseg to v1.0.0rc4

* remove search_groups in mutator

* revert env change

* update usage of sub_model

* fix UT

* fix bignas config

* fix UT for dcff & registry

* update Ut&channel_mutator

* fix test_channel_mutator

* fix Ut

* fix bug for load dcffnet

* update nas config

* update nas config

* fix api in evolution_search_loop

* update evolu_search_loop

* fix metric_predictor

* update url

* fix a0 fine_grained

* fix subnet export misskey

* fix ofa yaml

* fix lint

* fix comments

* add autoformer cfg

* update readme

* update supernet link

* fix sub_model configs

* update subnet inference readme

* fix lint

* fix lint

* Update autoformer_subnet_8xb256_in1k.py

* update test.py to support args.checkpoint as none

* update DARTS readme

* update readme

---------

Co-authored-by: gaoyang07 <1546308416@qq.com>
Co-authored-by: aptsunny <aptsunny@tongji.edu.cn>
Co-authored-by: sunyue1 <sunyue1@sensetime.com>
Co-authored-by: aptsunny <36404164+aptsunny@users.noreply.github.com>
Co-authored-by: wang shiguang <xiaohu_wyyx@163.com>
2023-03-02 18:22:20 +08:00
..
README.md [Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406) 2023-03-02 18:22:20 +08:00
SPOS_SUBNET.yaml
faster-rcnn_nas_backbone_fpn_1x_coco.py [Feature] Add BigNAS algorithm (#219) 2022-12-07 11:28:10 +08:00
metafile.yml [Improvement] Update searchable model (#438) 2023-02-17 17:26:41 +08:00
spos_mobilenet_search_8xb128_in1k.py
spos_mobilenet_subnet_8xb128_in1k.py [Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406) 2023-03-02 18:22:20 +08:00
spos_mobilenet_supernet_8xb128_in1k.py [Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406) 2023-03-02 18:22:20 +08:00
spos_shufflenet_search_8xb128_in1k.py
spos_shufflenet_search_predictor_8xb128_in1k.py [Feature] Add performance predictor (#306) 2022-11-14 17:09:32 +08:00
spos_shufflenet_subnet_8xb128_in1k.py [Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406) 2023-03-02 18:22:20 +08:00
spos_shufflenet_supernet_8xb128_in1k.py [Feature] Add DMCP and fix the deploy pipeline of NAS algorithms (#406) 2023-03-02 18:22:20 +08:00

README.md

SPOS

Single Path One-Shot Neural Architecture Search with Uniform Sampling

Abstract

We revisit the one-shot Neural Architecture Search (NAS) paradigm and analyze its advantages over existing NAS approaches. Existing one-shot method, however, is hard to train and not yet effective on large scale datasets like ImageNet. This work propose a Single Path One-Shot model to address the challenge in the training. Our central idea is to construct a simplified supernet, where all architectures are single paths so that weight co-adaption problem is alleviated. Training is performed by uniform path sampling. All architectures (and their weights) are trained fully and equally. Comprehensive experiments verify that our approach is flexible and effective. It is easy to train and fast to search. It effortlessly supports complex search spaces (e.g., building blocks, channel, mixed-precision quantization) and different search constraints (e.g., FLOPs, latency). It is thus convenient to use for various needs. It achieves start-of-the-art performance on the large dataset ImageNet.

pipeline

Get Started

Step 1: Supernet pre-training on ImageNet

CUDA_VISIBLE_DEVICES=0,1,2,3 PORT=29500 ./tools/dist_train.sh \
  configs/nas/spos/spos_supernet_shufflenetv2_8xb128_in1k.py 4 \
  --work-dir $WORK_DIR \

Step 2: Search for subnet on the trained supernet

CUDA_VISIBLE_DEVICES=0,1,2,3 PORT=29500 ./tools/dist_train.sh \
  configs/nas/spos/spos_evolution_search_shufflenetv2_8xb2048_in1k.py 4 \
  --work-dir $WORK_DIR --cfg-options load_from=$STEP1_CKPT

Step 3: Subnet retraining on ImageNet

CUDA_VISIBLE_DEVICES=0,1,2,3 PORT=29500 ./tools/dist_train.sh \
  configs/nas/spos/spos_subnet_shufflenetv2_8xb128_in1k.py 4 \
  --work-dir $WORK_DIR \
  --cfg-options model.init_cfg.checkpoint=$STEP2_CKPT

Step 4: Subnet inference on ImageNet

CUDA_VISIBLE_DEVICES=0 PORT=29500 ./tools/dist_test.sh \
  configs/nas/spos/spos_subnet_shufflenetv2_8xb128_in1k.py \
  none 1 --work-dir $WORK_DIR \
  --cfg-options model.init_cfg.checkpoint=$STEP3_CKPT

Results and models

Dataset Supernet Subnet Params(M) Flops(G) Top-1 (%) Top-5 (%) Config Download Remarks
ImageNet ShuffleNetV2 mutable 3.35 0.33 73.87 91.6 config model | log MMRazor searched
ImageNet MobileNet-ProxylessGPU mutable 5.94 0.49* 75.98 92.77 config AngleNAS searched

Note:

  1. There might be(not all the case) some small differences in our experiment in order to be consistent with other repos in OpenMMLab. For example, normalize images in data preprocessing; resize by cv2 rather than PIL in training; dropout is not used in network. Please refer to corresponding config for details.
  2. For ShuffleNetV2, we retrain the subnet reported in paper with their official code, Top-1 is 73.6 and Top-5 is 91.6.
  3. For AngleNAS searched MobileNet-ProxylessGPU, we obtain params and FLOPs using this script, which may be different from AngleNAS.

Citation

@inproceedings{guo2020single,
  title={Single path one-shot neural architecture search with uniform sampling},
  author={Guo, Zichao and Zhang, Xiangyu and Mu, Haoyuan and Heng, Wen and Liu, Zechun and Wei, Yichen and Sun, Jian},
  booktitle={European Conference on Computer Vision},
  pages={544--560},
  year={2020},
  organization={Springer}
}