├── .gitignore ├── README.md ├── data_providers ├── base_provider.py ├── cifar10.py └── imagenet.py ├── figs ├── 1.PNG ├── 2.PNG └── 3.PNG ├── mobile_config ├── cpu.config └── gpu.config ├── models ├── __init__.py ├── darts_nets_cifar │ ├── augment_cells.py │ ├── augment_cnn.py │ └── ops.py ├── darts_nets_imagenet │ ├── augment_cells.py │ ├── augment_cnn.py │ └── ops.py └── normal_nets │ └── proxyless_nets.py ├── modules └── layers.py ├── run_cpu_imagenet.sh ├── run_darts_cifar.sh ├── run_darts_imagenet.sh ├── run_exp.py ├── run_gpu_imagenet.sh ├── run_manager.py └── utils ├── __init__.py ├── get_data_iter.py ├── my_modules.py ├── preproc.py └── pytorch_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/README.md -------------------------------------------------------------------------------- /data_providers/base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/data_providers/base_provider.py -------------------------------------------------------------------------------- /data_providers/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/data_providers/cifar10.py -------------------------------------------------------------------------------- /data_providers/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/data_providers/imagenet.py -------------------------------------------------------------------------------- /figs/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/figs/1.PNG -------------------------------------------------------------------------------- /figs/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/figs/2.PNG -------------------------------------------------------------------------------- /figs/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/figs/3.PNG -------------------------------------------------------------------------------- /mobile_config/cpu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/mobile_config/cpu.config -------------------------------------------------------------------------------- /mobile_config/gpu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/mobile_config/gpu.config -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/darts_nets_cifar/augment_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_cifar/augment_cells.py -------------------------------------------------------------------------------- /models/darts_nets_cifar/augment_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_cifar/augment_cnn.py -------------------------------------------------------------------------------- /models/darts_nets_cifar/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_cifar/ops.py -------------------------------------------------------------------------------- /models/darts_nets_imagenet/augment_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_imagenet/augment_cells.py -------------------------------------------------------------------------------- /models/darts_nets_imagenet/augment_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_imagenet/augment_cnn.py -------------------------------------------------------------------------------- /models/darts_nets_imagenet/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/darts_nets_imagenet/ops.py -------------------------------------------------------------------------------- /models/normal_nets/proxyless_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/models/normal_nets/proxyless_nets.py -------------------------------------------------------------------------------- /modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/modules/layers.py -------------------------------------------------------------------------------- /run_cpu_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_cpu_imagenet.sh -------------------------------------------------------------------------------- /run_darts_cifar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_darts_cifar.sh -------------------------------------------------------------------------------- /run_darts_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_darts_imagenet.sh -------------------------------------------------------------------------------- /run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_exp.py -------------------------------------------------------------------------------- /run_gpu_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_gpu_imagenet.sh -------------------------------------------------------------------------------- /run_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/run_manager.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/get_data_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/utils/get_data_iter.py -------------------------------------------------------------------------------- /utils/my_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/utils/my_modules.py -------------------------------------------------------------------------------- /utils/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/utils/preproc.py -------------------------------------------------------------------------------- /utils/pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglang96/MDENAS/HEAD/utils/pytorch_utils.py --------------------------------------------------------------------------------