├── .gitignore ├── README.md ├── genotypes.py ├── gpu_thread.py ├── images ├── DL1_normal.pdf ├── DL1_reduction.pdf ├── DL2_epoch_stats-1.png ├── DL2_epoch_stats.pdf ├── DL2_normal-1.png ├── DL2_normal.pdf ├── DL2_reduction-1.png ├── DL2_reduction.pdf ├── DR_normal.pdf ├── DR_reduction.pdf ├── UR_normal.pdf └── UR_reduction.pdf ├── model.py ├── model_search.py ├── operations.py ├── scripts ├── search_darts_like.sh ├── search_depth_restricted.sh ├── search_unrestricted.sh ├── train_DL1.sh ├── train_DL2.sh ├── train_DR.sh └── train_UR.sh ├── test.py ├── test_imagenet.py ├── train_cifar.py ├── train_imagenet.py ├── train_search.py ├── utils.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/README.md -------------------------------------------------------------------------------- /genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/genotypes.py -------------------------------------------------------------------------------- /gpu_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/gpu_thread.py -------------------------------------------------------------------------------- /images/DL1_normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL1_normal.pdf -------------------------------------------------------------------------------- /images/DL1_reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL1_reduction.pdf -------------------------------------------------------------------------------- /images/DL2_epoch_stats-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_epoch_stats-1.png -------------------------------------------------------------------------------- /images/DL2_epoch_stats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_epoch_stats.pdf -------------------------------------------------------------------------------- /images/DL2_normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_normal-1.png -------------------------------------------------------------------------------- /images/DL2_normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_normal.pdf -------------------------------------------------------------------------------- /images/DL2_reduction-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_reduction-1.png -------------------------------------------------------------------------------- /images/DL2_reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DL2_reduction.pdf -------------------------------------------------------------------------------- /images/DR_normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DR_normal.pdf -------------------------------------------------------------------------------- /images/DR_reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/DR_reduction.pdf -------------------------------------------------------------------------------- /images/UR_normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/UR_normal.pdf -------------------------------------------------------------------------------- /images/UR_reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/images/UR_reduction.pdf -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/model.py -------------------------------------------------------------------------------- /model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/model_search.py -------------------------------------------------------------------------------- /operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/operations.py -------------------------------------------------------------------------------- /scripts/search_darts_like.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/search_darts_like.sh -------------------------------------------------------------------------------- /scripts/search_depth_restricted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/search_depth_restricted.sh -------------------------------------------------------------------------------- /scripts/search_unrestricted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/search_unrestricted.sh -------------------------------------------------------------------------------- /scripts/train_DL1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/train_DL1.sh -------------------------------------------------------------------------------- /scripts/train_DL2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/train_DL2.sh -------------------------------------------------------------------------------- /scripts/train_DR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/train_DR.sh -------------------------------------------------------------------------------- /scripts/train_UR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/scripts/train_UR.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/test.py -------------------------------------------------------------------------------- /test_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/test_imagenet.py -------------------------------------------------------------------------------- /train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/train_cifar.py -------------------------------------------------------------------------------- /train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/train_imagenet.py -------------------------------------------------------------------------------- /train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/train_search.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/utils.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogsys-tuebingen/prdarts/HEAD/visualize.py --------------------------------------------------------------------------------