├── README.md ├── cat.jpg ├── deploy_MnasNet.prototxt ├── eval_image.py ├── labels.txt ├── model_save └── MnasNet_model_cat_dog_iter_64000.caffemodel ├── solver.prototxt ├── test_MnasNet.prototxt ├── train_MnasNet.prototxt ├── train_net.sh └── verify.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/README.md -------------------------------------------------------------------------------- /cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/cat.jpg -------------------------------------------------------------------------------- /deploy_MnasNet.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/deploy_MnasNet.prototxt -------------------------------------------------------------------------------- /eval_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/eval_image.py -------------------------------------------------------------------------------- /labels.txt: -------------------------------------------------------------------------------- 1 | 0 cat 2 | 1 dog 3 | -------------------------------------------------------------------------------- /model_save/MnasNet_model_cat_dog_iter_64000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/model_save/MnasNet_model_cat_dog_iter_64000.caffemodel -------------------------------------------------------------------------------- /solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/solver.prototxt -------------------------------------------------------------------------------- /test_MnasNet.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/test_MnasNet.prototxt -------------------------------------------------------------------------------- /train_MnasNet.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/train_MnasNet.prototxt -------------------------------------------------------------------------------- /train_net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/train_net.sh -------------------------------------------------------------------------------- /verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJianfei06/MnasNet-caffe/HEAD/verify.py --------------------------------------------------------------------------------