├── MnasNet.py ├── README.md ├── draw_log.py ├── input_299_top1_70.132%_model_best.pth.tar ├── logs ├── Testing Loss.png ├── Testing Top1 accuracy.png ├── Testing Top5 accuracy.png ├── Training Loss.png ├── Training Top1 accuracy.png ├── Training Top5 accuracy.png ├── accuracy.log └── train_val.log ├── run_mnasnet.sh ├── top1_68.964%_model_best.pth.tar ├── valprep.sh └── wh_mnasnet_train.py /MnasNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/MnasNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/README.md -------------------------------------------------------------------------------- /draw_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/draw_log.py -------------------------------------------------------------------------------- /input_299_top1_70.132%_model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/input_299_top1_70.132%_model_best.pth.tar -------------------------------------------------------------------------------- /logs/Testing Loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Testing Loss.png -------------------------------------------------------------------------------- /logs/Testing Top1 accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Testing Top1 accuracy.png -------------------------------------------------------------------------------- /logs/Testing Top5 accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Testing Top5 accuracy.png -------------------------------------------------------------------------------- /logs/Training Loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Training Loss.png -------------------------------------------------------------------------------- /logs/Training Top1 accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Training Top1 accuracy.png -------------------------------------------------------------------------------- /logs/Training Top5 accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/Training Top5 accuracy.png -------------------------------------------------------------------------------- /logs/accuracy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/accuracy.log -------------------------------------------------------------------------------- /logs/train_val.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/logs/train_val.log -------------------------------------------------------------------------------- /run_mnasnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/run_mnasnet.sh -------------------------------------------------------------------------------- /top1_68.964%_model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/top1_68.964%_model_best.pth.tar -------------------------------------------------------------------------------- /valprep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/valprep.sh -------------------------------------------------------------------------------- /wh_mnasnet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billhhh/MnasNet-pytorch-pretrained/HEAD/wh_mnasnet_train.py --------------------------------------------------------------------------------