├── PeleeNet.py ├── README.md ├── cache.py ├── cifar10.py ├── config.py ├── data └── cifar10 │ └── test.txt ├── dataset.py ├── figure ├── architecture_peleenet_classification.png ├── dense_block.png ├── loss_and_accuracy.png ├── net_block.png └── stem_block.png ├── layers.py ├── main.py ├── python3 ├── cache.py ├── cifar10.py └── dataset.py └── utils.py /PeleeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/PeleeNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/README.md -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/cache.py -------------------------------------------------------------------------------- /cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/cifar10.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/config.py -------------------------------------------------------------------------------- /data/cifar10/test.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/dataset.py -------------------------------------------------------------------------------- /figure/architecture_peleenet_classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/figure/architecture_peleenet_classification.png -------------------------------------------------------------------------------- /figure/dense_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/figure/dense_block.png -------------------------------------------------------------------------------- /figure/loss_and_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/figure/loss_and_accuracy.png -------------------------------------------------------------------------------- /figure/net_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/figure/net_block.png -------------------------------------------------------------------------------- /figure/stem_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/figure/stem_block.png -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/main.py -------------------------------------------------------------------------------- /python3/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/python3/cache.py -------------------------------------------------------------------------------- /python3/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/python3/cifar10.py -------------------------------------------------------------------------------- /python3/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/python3/dataset.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnUyi/PeleeNet/HEAD/utils.py --------------------------------------------------------------------------------