├── LICENSE ├── README.md ├── cifar_search.py ├── environment_onnas.yml ├── images └── reduction.png ├── main.py ├── meta_optimizer └── reptile.py ├── models ├── ops.py ├── ops_7c.py ├── ops_naive.py ├── search_cnn.py ├── search_cnn_PC.py └── search_cnn_pure_darts.py ├── onnas_full_task.sh ├── task_optimizer └── darts.py ├── tasks ├── core.py └── torchmeta_loader.py ├── tfml.sh ├── tfml_onnas.sh └── utils ├── genotypes.py ├── preproc.py ├── utils.py └── visualize.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/README.md -------------------------------------------------------------------------------- /cifar_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/cifar_search.py -------------------------------------------------------------------------------- /environment_onnas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/environment_onnas.yml -------------------------------------------------------------------------------- /images/reduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/images/reduction.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/main.py -------------------------------------------------------------------------------- /meta_optimizer/reptile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/meta_optimizer/reptile.py -------------------------------------------------------------------------------- /models/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/ops.py -------------------------------------------------------------------------------- /models/ops_7c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/ops_7c.py -------------------------------------------------------------------------------- /models/ops_naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/ops_naive.py -------------------------------------------------------------------------------- /models/search_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/search_cnn.py -------------------------------------------------------------------------------- /models/search_cnn_PC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/search_cnn_PC.py -------------------------------------------------------------------------------- /models/search_cnn_pure_darts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/models/search_cnn_pure_darts.py -------------------------------------------------------------------------------- /onnas_full_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/onnas_full_task.sh -------------------------------------------------------------------------------- /task_optimizer/darts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/task_optimizer/darts.py -------------------------------------------------------------------------------- /tasks/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/tasks/core.py -------------------------------------------------------------------------------- /tasks/torchmeta_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/tasks/torchmeta_loader.py -------------------------------------------------------------------------------- /tfml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/tfml.sh -------------------------------------------------------------------------------- /tfml_onnas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/tfml_onnas.sh -------------------------------------------------------------------------------- /utils/genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/utils/genotypes.py -------------------------------------------------------------------------------- /utils/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/utils/preproc.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eai-lab/On-NAS/HEAD/utils/visualize.py --------------------------------------------------------------------------------