├── .gitignore ├── README.md └── code ├── CIFAR ├── arch_search.py ├── arch_search │ ├── __init__.py │ └── arch_search_tree_cell.py ├── client.py ├── data_providers │ ├── __init__.py │ ├── base_provider.py │ ├── cifar.py │ ├── downloader.py │ └── utils.py ├── expdir_monitor │ ├── __init__.py │ ├── arch_manager.py │ ├── distributed.py │ ├── expdir_monitor.py │ └── net_pool.py ├── meta_controller │ ├── __init__.py │ ├── actor_nets.py │ ├── encoder_net.py │ ├── rl_controller.py │ ├── rl_trainer.py │ └── utils.py ├── models │ ├── __init__.py │ ├── chain_net.py │ ├── densenet.py │ ├── layers.py │ ├── pyramidnet.py │ ├── run_manager.py │ ├── tree_node.py │ └── utils.py ├── run_chain_net.py ├── run_densenet.py ├── run_exp.py ├── run_pyramidnet.py └── server_config └── ImageNet ├── layers.py ├── main.py ├── models ├── __init__.py ├── condensenet.py ├── condensenet_converted.py └── condensenet_tree_cell.py ├── scripts.sh ├── tree_cells.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/README.md -------------------------------------------------------------------------------- /code/CIFAR/arch_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/arch_search.py -------------------------------------------------------------------------------- /code/CIFAR/arch_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/CIFAR/arch_search/arch_search_tree_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/arch_search/arch_search_tree_cell.py -------------------------------------------------------------------------------- /code/CIFAR/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/client.py -------------------------------------------------------------------------------- /code/CIFAR/data_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/CIFAR/data_providers/base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/data_providers/base_provider.py -------------------------------------------------------------------------------- /code/CIFAR/data_providers/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/data_providers/cifar.py -------------------------------------------------------------------------------- /code/CIFAR/data_providers/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/data_providers/downloader.py -------------------------------------------------------------------------------- /code/CIFAR/data_providers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/data_providers/utils.py -------------------------------------------------------------------------------- /code/CIFAR/expdir_monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/CIFAR/expdir_monitor/arch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/expdir_monitor/arch_manager.py -------------------------------------------------------------------------------- /code/CIFAR/expdir_monitor/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/expdir_monitor/distributed.py -------------------------------------------------------------------------------- /code/CIFAR/expdir_monitor/expdir_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/expdir_monitor/expdir_monitor.py -------------------------------------------------------------------------------- /code/CIFAR/expdir_monitor/net_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/expdir_monitor/net_pool.py -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/actor_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/meta_controller/actor_nets.py -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/encoder_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/meta_controller/encoder_net.py -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/rl_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/meta_controller/rl_controller.py -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/rl_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/meta_controller/rl_trainer.py -------------------------------------------------------------------------------- /code/CIFAR/meta_controller/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/meta_controller/utils.py -------------------------------------------------------------------------------- /code/CIFAR/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/CIFAR/models/chain_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/chain_net.py -------------------------------------------------------------------------------- /code/CIFAR/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/densenet.py -------------------------------------------------------------------------------- /code/CIFAR/models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/layers.py -------------------------------------------------------------------------------- /code/CIFAR/models/pyramidnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/pyramidnet.py -------------------------------------------------------------------------------- /code/CIFAR/models/run_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/run_manager.py -------------------------------------------------------------------------------- /code/CIFAR/models/tree_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/tree_node.py -------------------------------------------------------------------------------- /code/CIFAR/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/models/utils.py -------------------------------------------------------------------------------- /code/CIFAR/run_chain_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/run_chain_net.py -------------------------------------------------------------------------------- /code/CIFAR/run_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/run_densenet.py -------------------------------------------------------------------------------- /code/CIFAR/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/run_exp.py -------------------------------------------------------------------------------- /code/CIFAR/run_pyramidnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/run_pyramidnet.py -------------------------------------------------------------------------------- /code/CIFAR/server_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/CIFAR/server_config -------------------------------------------------------------------------------- /code/ImageNet/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/layers.py -------------------------------------------------------------------------------- /code/ImageNet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/main.py -------------------------------------------------------------------------------- /code/ImageNet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/models/__init__.py -------------------------------------------------------------------------------- /code/ImageNet/models/condensenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/models/condensenet.py -------------------------------------------------------------------------------- /code/ImageNet/models/condensenet_converted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/models/condensenet_converted.py -------------------------------------------------------------------------------- /code/ImageNet/models/condensenet_tree_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/models/condensenet_tree_cell.py -------------------------------------------------------------------------------- /code/ImageNet/scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/scripts.sh -------------------------------------------------------------------------------- /code/ImageNet/tree_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/tree_cells.py -------------------------------------------------------------------------------- /code/ImageNet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/han-cai/PathLevel-EAS/HEAD/code/ImageNet/utils.py --------------------------------------------------------------------------------