├── .DS_Store ├── LICENSE ├── MNIST_data ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── README.md ├── cnn.py ├── experiments ├── .DS_Store ├── README.md └── train.py ├── net_manager.py ├── reinforce.py └── train.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/LICENSE -------------------------------------------------------------------------------- /MNIST_data/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/MNIST_data/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /MNIST_data/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/MNIST_data/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /MNIST_data/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/MNIST_data/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /MNIST_data/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/MNIST_data/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/README.md -------------------------------------------------------------------------------- /cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/cnn.py -------------------------------------------------------------------------------- /experiments/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/experiments/.DS_Store -------------------------------------------------------------------------------- /experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/experiments/README.md -------------------------------------------------------------------------------- /experiments/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/experiments/train.py -------------------------------------------------------------------------------- /net_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/net_manager.py -------------------------------------------------------------------------------- /reinforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/reinforce.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallarm/nascell-automl/HEAD/train.py --------------------------------------------------------------------------------