├── .gitignore ├── LICENSE ├── README.md └── cnn ├── .gitignore ├── README.md ├── augmentation.lua ├── datasets └── .gitignore ├── logs ├── ecnet_56_12_cifar10 │ ├── graph.pdf │ └── log.txt └── ecnet_56_12_cifar100 │ ├── graph.pdf │ └── log.txt ├── models ├── ecnet.lua └── utils.lua ├── notebooks ├── sweeper.py └── visualize.ipynb ├── scripts └── train_cifar.sh ├── torchtools.lua └── train.lua /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/README.md -------------------------------------------------------------------------------- /cnn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/.gitignore -------------------------------------------------------------------------------- /cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/README.md -------------------------------------------------------------------------------- /cnn/augmentation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/augmentation.lua -------------------------------------------------------------------------------- /cnn/datasets/.gitignore: -------------------------------------------------------------------------------- 1 | *.t7 2 | -------------------------------------------------------------------------------- /cnn/logs/ecnet_56_12_cifar10/graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/logs/ecnet_56_12_cifar10/graph.pdf -------------------------------------------------------------------------------- /cnn/logs/ecnet_56_12_cifar10/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/logs/ecnet_56_12_cifar10/log.txt -------------------------------------------------------------------------------- /cnn/logs/ecnet_56_12_cifar100/graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/logs/ecnet_56_12_cifar100/graph.pdf -------------------------------------------------------------------------------- /cnn/logs/ecnet_56_12_cifar100/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/logs/ecnet_56_12_cifar100/log.txt -------------------------------------------------------------------------------- /cnn/models/ecnet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/models/ecnet.lua -------------------------------------------------------------------------------- /cnn/models/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/models/utils.lua -------------------------------------------------------------------------------- /cnn/notebooks/sweeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/notebooks/sweeper.py -------------------------------------------------------------------------------- /cnn/notebooks/visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/notebooks/visualize.ipynb -------------------------------------------------------------------------------- /cnn/scripts/train_cifar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/scripts/train_cifar.sh -------------------------------------------------------------------------------- /cnn/torchtools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/torchtools.lua -------------------------------------------------------------------------------- /cnn/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zizhaozhang/mdnet-cvpr2017/HEAD/cnn/train.lua --------------------------------------------------------------------------------