├── LICENSE ├── README.md ├── cnn ├── MinEntropyLoss.py ├── __pycache__ │ ├── MinEntropyLoss.cpython-36.pyc │ ├── architect.cpython-36.pyc │ ├── dimension.cpython-36.pyc │ ├── genotypes.cpython-36.pyc │ ├── model_search.cpython-36.pyc │ ├── operations.cpython-36.pyc │ └── utils.cpython-36.pyc ├── architect.py ├── dimension.py ├── genotypes.py ├── model.py ├── model_search.py ├── operations.py ├── test.py ├── test_imagenet.py ├── train.py ├── train_imagenet.py ├── train_search.py └── utils.py ├── img ├── N_change_DA2S.png ├── N_change_darts.png ├── R_change_DA2S.png └── flowchart.png └── nas_bench201 ├── MinEntropyLoss.py ├── __pycache__ ├── MinEntropyLoss.cpython-36.pyc ├── architect.cpython-36.pyc ├── dimension.cpython-36.pyc ├── genotypes.cpython-36.pyc ├── model_search.cpython-36.pyc ├── operations.cpython-36.pyc └── utils.cpython-36.pyc ├── architect.py ├── dimension.py ├── genotypes.py ├── model_search.py ├── operations.py ├── train_search.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/README.md -------------------------------------------------------------------------------- /cnn/MinEntropyLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/MinEntropyLoss.py -------------------------------------------------------------------------------- /cnn/__pycache__/MinEntropyLoss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/MinEntropyLoss.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/architect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/architect.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/dimension.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/dimension.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/genotypes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/genotypes.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/model_search.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/model_search.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/operations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/operations.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /cnn/architect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/architect.py -------------------------------------------------------------------------------- /cnn/dimension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/dimension.py -------------------------------------------------------------------------------- /cnn/genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/genotypes.py -------------------------------------------------------------------------------- /cnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/model.py -------------------------------------------------------------------------------- /cnn/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/model_search.py -------------------------------------------------------------------------------- /cnn/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/operations.py -------------------------------------------------------------------------------- /cnn/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/test.py -------------------------------------------------------------------------------- /cnn/test_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/test_imagenet.py -------------------------------------------------------------------------------- /cnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/train.py -------------------------------------------------------------------------------- /cnn/train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/train_imagenet.py -------------------------------------------------------------------------------- /cnn/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/train_search.py -------------------------------------------------------------------------------- /cnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/cnn/utils.py -------------------------------------------------------------------------------- /img/N_change_DA2S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/img/N_change_DA2S.png -------------------------------------------------------------------------------- /img/N_change_darts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/img/N_change_darts.png -------------------------------------------------------------------------------- /img/R_change_DA2S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/img/R_change_DA2S.png -------------------------------------------------------------------------------- /img/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/img/flowchart.png -------------------------------------------------------------------------------- /nas_bench201/MinEntropyLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/MinEntropyLoss.py -------------------------------------------------------------------------------- /nas_bench201/__pycache__/MinEntropyLoss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/MinEntropyLoss.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/architect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/architect.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/dimension.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/dimension.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/genotypes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/genotypes.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/model_search.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/model_search.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/operations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/operations.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /nas_bench201/architect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/architect.py -------------------------------------------------------------------------------- /nas_bench201/dimension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/dimension.py -------------------------------------------------------------------------------- /nas_bench201/genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/genotypes.py -------------------------------------------------------------------------------- /nas_bench201/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/model_search.py -------------------------------------------------------------------------------- /nas_bench201/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/operations.py -------------------------------------------------------------------------------- /nas_bench201/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/train_search.py -------------------------------------------------------------------------------- /nas_bench201/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunsmarterjie/DAAS/HEAD/nas_bench201/utils.py --------------------------------------------------------------------------------