├── .gitignore ├── IGCV3.py ├── LICENSE.md ├── MobileNetV2.py ├── README.md ├── cifar100data.py ├── cifar10data.py ├── config ├── cifar100_test_exp.json └── cifar10_test_exp.json ├── figures ├── igc.PNG ├── igc_ori.png ├── igcv2.PNG ├── irc.png ├── path_mn_2.PNG ├── super_branch_2.PNG └── tb.png ├── main.py ├── requirements.txt ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /IGCV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/IGCV3.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2018 3 | -------------------------------------------------------------------------------- /MobileNetV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/MobileNetV2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /cifar100data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/cifar100data.py -------------------------------------------------------------------------------- /cifar10data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/cifar10data.py -------------------------------------------------------------------------------- /config/cifar100_test_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/config/cifar100_test_exp.json -------------------------------------------------------------------------------- /config/cifar10_test_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/config/cifar10_test_exp.json -------------------------------------------------------------------------------- /figures/igc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/igc.PNG -------------------------------------------------------------------------------- /figures/igc_ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/igc_ori.png -------------------------------------------------------------------------------- /figures/igcv2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/igcv2.PNG -------------------------------------------------------------------------------- /figures/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/irc.png -------------------------------------------------------------------------------- /figures/path_mn_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/path_mn_2.PNG -------------------------------------------------------------------------------- /figures/super_branch_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/super_branch_2.PNG -------------------------------------------------------------------------------- /figures/tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/figures/tb.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxradon/IGCV3-pytorch/HEAD/utils.py --------------------------------------------------------------------------------