├── .gitignore ├── LICENSE ├── README.md ├── encoder.py ├── images ├── pnas.png └── pnas_sorted.png ├── manager.py ├── model.py ├── ops.py ├── rank_architectures.py ├── score_architectures.py ├── train.py ├── train_history.csv └── weights ├── checkpoint ├── controller.ckpt-3.data-00000-of-00001 └── controller.ckpt-3.index /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/README.md -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/encoder.py -------------------------------------------------------------------------------- /images/pnas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/images/pnas.png -------------------------------------------------------------------------------- /images/pnas_sorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/images/pnas_sorted.png -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/manager.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/model.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/ops.py -------------------------------------------------------------------------------- /rank_architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/rank_architectures.py -------------------------------------------------------------------------------- /score_architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/score_architectures.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/train.py -------------------------------------------------------------------------------- /train_history.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/train_history.csv -------------------------------------------------------------------------------- /weights/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/weights/checkpoint -------------------------------------------------------------------------------- /weights/controller.ckpt-3.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/weights/controller.ckpt-3.data-00000-of-00001 -------------------------------------------------------------------------------- /weights/controller.ckpt-3.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/progressive-neural-architecture-search/HEAD/weights/controller.ckpt-3.index --------------------------------------------------------------------------------