├── .gitignore ├── LICENSE ├── README.md ├── bak ├── curve.png ├── log.csv ├── table.png └── weights.pkl ├── blocks.py ├── count.py ├── network.py ├── plot.py ├── train.py ├── train_ddp.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/README.md -------------------------------------------------------------------------------- /bak/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/bak/curve.png -------------------------------------------------------------------------------- /bak/log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/bak/log.csv -------------------------------------------------------------------------------- /bak/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/bak/table.png -------------------------------------------------------------------------------- /bak/weights.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/bak/weights.pkl -------------------------------------------------------------------------------- /blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/blocks.py -------------------------------------------------------------------------------- /count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/count.py -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/network.py -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/plot.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/train.py -------------------------------------------------------------------------------- /train_ddp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/train_ddp.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenhang98/mobileNet-v2_cifar10/HEAD/util.py --------------------------------------------------------------------------------