├── .gitignore ├── README.md ├── archs └── examples │ └── sbms_cluster.yaml ├── data ├── COLLAB.py ├── QM9.py ├── SBMs.py ├── SBMs │ ├── generate_SBM_CLUSTER.ipynb │ └── generate_SBM_PATTERN.ipynb ├── TSP.py ├── TSP │ ├── generate_TSP.py │ └── prepare_TSP.ipynb ├── __init__.py ├── cora.py ├── molecules.py ├── molecules │ └── prepare_molecules.ipynb ├── superpixels.py └── superpixels │ ├── prepare_superpixels_CIFAR.ipynb │ └── prepare_superpixels_MNIST.ipynb ├── environment_gpu.yml ├── example_geno.yaml ├── models ├── architect.py ├── cell_search.py ├── cell_train.py ├── mixed.py ├── model_search.py ├── model_train.py ├── networks.py └── operations.py ├── scripts ├── search_molecules_zinc.sh ├── search_sbms_cluster.sh ├── search_sbms_pattern.sh ├── search_superpixels_cifar10.sh ├── search_superpixels_mnist.sh ├── train_molecules_zinc.sh ├── train_sbms_cluster.sh ├── train_sbms_pattern.sh ├── train_superpixels_cifar10.sh └── train_superpixels_mnist.sh ├── search.py ├── train.py └── utils ├── record_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/README.md -------------------------------------------------------------------------------- /archs/examples/sbms_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/archs/examples/sbms_cluster.yaml -------------------------------------------------------------------------------- /data/COLLAB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/COLLAB.py -------------------------------------------------------------------------------- /data/QM9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/QM9.py -------------------------------------------------------------------------------- /data/SBMs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/SBMs.py -------------------------------------------------------------------------------- /data/SBMs/generate_SBM_CLUSTER.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/SBMs/generate_SBM_CLUSTER.ipynb -------------------------------------------------------------------------------- /data/SBMs/generate_SBM_PATTERN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/SBMs/generate_SBM_PATTERN.ipynb -------------------------------------------------------------------------------- /data/TSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/TSP.py -------------------------------------------------------------------------------- /data/TSP/generate_TSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/TSP/generate_TSP.py -------------------------------------------------------------------------------- /data/TSP/prepare_TSP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/TSP/prepare_TSP.ipynb -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/cora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/cora.py -------------------------------------------------------------------------------- /data/molecules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/molecules.py -------------------------------------------------------------------------------- /data/molecules/prepare_molecules.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/molecules/prepare_molecules.ipynb -------------------------------------------------------------------------------- /data/superpixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/superpixels.py -------------------------------------------------------------------------------- /data/superpixels/prepare_superpixels_CIFAR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/superpixels/prepare_superpixels_CIFAR.ipynb -------------------------------------------------------------------------------- /data/superpixels/prepare_superpixels_MNIST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/data/superpixels/prepare_superpixels_MNIST.ipynb -------------------------------------------------------------------------------- /environment_gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/environment_gpu.yml -------------------------------------------------------------------------------- /example_geno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/example_geno.yaml -------------------------------------------------------------------------------- /models/architect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/architect.py -------------------------------------------------------------------------------- /models/cell_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/cell_search.py -------------------------------------------------------------------------------- /models/cell_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/cell_train.py -------------------------------------------------------------------------------- /models/mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/mixed.py -------------------------------------------------------------------------------- /models/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/model_search.py -------------------------------------------------------------------------------- /models/model_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/model_train.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/models/operations.py -------------------------------------------------------------------------------- /scripts/search_molecules_zinc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/search_molecules_zinc.sh -------------------------------------------------------------------------------- /scripts/search_sbms_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/search_sbms_cluster.sh -------------------------------------------------------------------------------- /scripts/search_sbms_pattern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/search_sbms_pattern.sh -------------------------------------------------------------------------------- /scripts/search_superpixels_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/search_superpixels_cifar10.sh -------------------------------------------------------------------------------- /scripts/search_superpixels_mnist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/search_superpixels_mnist.sh -------------------------------------------------------------------------------- /scripts/train_molecules_zinc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/train_molecules_zinc.sh -------------------------------------------------------------------------------- /scripts/train_sbms_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/train_sbms_cluster.sh -------------------------------------------------------------------------------- /scripts/train_sbms_pattern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/train_sbms_pattern.sh -------------------------------------------------------------------------------- /scripts/train_superpixels_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/train_superpixels_cifar10.sh -------------------------------------------------------------------------------- /scripts/train_superpixels_mnist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/scripts/train_superpixels_mnist.sh -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/search.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/train.py -------------------------------------------------------------------------------- /utils/record_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/utils/record_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phython96/GNAS-MP/HEAD/utils/utils.py --------------------------------------------------------------------------------