├── .gitignore ├── MEMO.md ├── README.md ├── cifar10 ├── datasets.py ├── experiments.sh ├── functions.py ├── image_processing.py ├── network.py ├── train.py └── visualize.py ├── figures ├── resnet.layers.png ├── resnet.mapping.png └── resnet.solvers.png ├── input └── .gitkeep ├── install.sh ├── models └── .gitkeep ├── output └── .gitkeep └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /MEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/MEMO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /cifar10/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/datasets.py -------------------------------------------------------------------------------- /cifar10/experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/experiments.sh -------------------------------------------------------------------------------- /cifar10/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/functions.py -------------------------------------------------------------------------------- /cifar10/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/image_processing.py -------------------------------------------------------------------------------- /cifar10/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/network.py -------------------------------------------------------------------------------- /cifar10/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/train.py -------------------------------------------------------------------------------- /cifar10/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/cifar10/visualize.py -------------------------------------------------------------------------------- /figures/resnet.layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/figures/resnet.layers.png -------------------------------------------------------------------------------- /figures/resnet.mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/figures/resnet.mapping.png -------------------------------------------------------------------------------- /figures/resnet.solvers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/figures/resnet.solvers.png -------------------------------------------------------------------------------- /input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namakemono/cifar10-tensorflow/HEAD/install.sh -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | scikit-learn 3 | --------------------------------------------------------------------------------