├── .gitignore ├── LICENSE ├── README.md ├── clr.py ├── data.py ├── flops_benchmark.py ├── imagenet.py ├── logger.py ├── model.py ├── requirements.txt ├── results └── shufflenet_v2_0.5 │ ├── loss.png │ ├── model_best.pth.tar │ ├── params.txt │ ├── results.csv │ ├── top1.png │ └── top5.png └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /clr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/clr.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/data.py -------------------------------------------------------------------------------- /flops_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/flops_benchmark.py -------------------------------------------------------------------------------- /imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/imagenet.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/logger.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/loss.png -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/model_best.pth.tar -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/params.txt -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/results.csv -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/top1.png -------------------------------------------------------------------------------- /results/shufflenet_v2_0.5/top5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/results/shufflenet_v2_0.5/top5.png -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Randl/ShuffleNetV2-pytorch/HEAD/run.py --------------------------------------------------------------------------------