├── .gitignore ├── LICENSE ├── NAO_V1 ├── README.md ├── __init__.py ├── controller.py ├── decoder.py ├── encoder.py ├── model.py ├── model_search.py ├── operations.py ├── test_cifar.py ├── train_NAONet_A_128_cifar10_4cards.sh ├── train_NAONet_A_36_cifar10.sh ├── train_NAONet_A_imagenet.sh ├── train_NAONet_A_imagenet_4cards.sh ├── train_NAONet_B_36_cifar10.sh ├── train_cifar.py ├── train_controller.py ├── train_imagenet.py ├── train_search.py ├── train_search_NAO-WS_cifar10.sh └── utils.py ├── NAO_V2 ├── README.md ├── __init__.py ├── autoaugment.py ├── controller.py ├── decoder.py ├── encoder.py ├── model.py ├── model_search.py ├── operations.py ├── test_cifar.py ├── test_controller.py ├── train_NAONet_V2_36_cifar10.sh ├── train_NAONet_V2_imagenet.sh ├── train_NAONet_V2_imagenet_4cards.sh ├── train_cifar.py ├── train_controller.py ├── train_imagenet.py ├── train_search.py ├── train_search_cifar10.sh └── utils.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /NAO_V1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/README.md -------------------------------------------------------------------------------- /NAO_V1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NAO_V1/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/controller.py -------------------------------------------------------------------------------- /NAO_V1/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/decoder.py -------------------------------------------------------------------------------- /NAO_V1/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/encoder.py -------------------------------------------------------------------------------- /NAO_V1/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/model.py -------------------------------------------------------------------------------- /NAO_V1/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/model_search.py -------------------------------------------------------------------------------- /NAO_V1/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/operations.py -------------------------------------------------------------------------------- /NAO_V1/test_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/test_cifar.py -------------------------------------------------------------------------------- /NAO_V1/train_NAONet_A_128_cifar10_4cards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_NAONet_A_128_cifar10_4cards.sh -------------------------------------------------------------------------------- /NAO_V1/train_NAONet_A_36_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_NAONet_A_36_cifar10.sh -------------------------------------------------------------------------------- /NAO_V1/train_NAONet_A_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_NAONet_A_imagenet.sh -------------------------------------------------------------------------------- /NAO_V1/train_NAONet_A_imagenet_4cards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_NAONet_A_imagenet_4cards.sh -------------------------------------------------------------------------------- /NAO_V1/train_NAONet_B_36_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_NAONet_B_36_cifar10.sh -------------------------------------------------------------------------------- /NAO_V1/train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_cifar.py -------------------------------------------------------------------------------- /NAO_V1/train_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_controller.py -------------------------------------------------------------------------------- /NAO_V1/train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_imagenet.py -------------------------------------------------------------------------------- /NAO_V1/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_search.py -------------------------------------------------------------------------------- /NAO_V1/train_search_NAO-WS_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/train_search_NAO-WS_cifar10.sh -------------------------------------------------------------------------------- /NAO_V1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V1/utils.py -------------------------------------------------------------------------------- /NAO_V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/README.md -------------------------------------------------------------------------------- /NAO_V2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NAO_V2/autoaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/autoaugment.py -------------------------------------------------------------------------------- /NAO_V2/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/controller.py -------------------------------------------------------------------------------- /NAO_V2/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/decoder.py -------------------------------------------------------------------------------- /NAO_V2/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/encoder.py -------------------------------------------------------------------------------- /NAO_V2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/model.py -------------------------------------------------------------------------------- /NAO_V2/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/model_search.py -------------------------------------------------------------------------------- /NAO_V2/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/operations.py -------------------------------------------------------------------------------- /NAO_V2/test_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/test_cifar.py -------------------------------------------------------------------------------- /NAO_V2/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/test_controller.py -------------------------------------------------------------------------------- /NAO_V2/train_NAONet_V2_36_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_NAONet_V2_36_cifar10.sh -------------------------------------------------------------------------------- /NAO_V2/train_NAONet_V2_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_NAONet_V2_imagenet.sh -------------------------------------------------------------------------------- /NAO_V2/train_NAONet_V2_imagenet_4cards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_NAONet_V2_imagenet_4cards.sh -------------------------------------------------------------------------------- /NAO_V2/train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_cifar.py -------------------------------------------------------------------------------- /NAO_V2/train_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_controller.py -------------------------------------------------------------------------------- /NAO_V2/train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_imagenet.py -------------------------------------------------------------------------------- /NAO_V2/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_search.py -------------------------------------------------------------------------------- /NAO_V2/train_search_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/train_search_cifar10.sh -------------------------------------------------------------------------------- /NAO_V2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/NAO_V2/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renqianluo/NAO_pytorch/HEAD/README.md --------------------------------------------------------------------------------