├── README.md ├── genotypes.py ├── imgs ├── darts_convergence.png ├── darts_gradient.png ├── darts_loss.png └── topologies.png ├── model.py ├── operations.py ├── train_cifar10.py ├── train_cifar100.py ├── train_imagenet_tiny.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/README.md -------------------------------------------------------------------------------- /genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/genotypes.py -------------------------------------------------------------------------------- /imgs/darts_convergence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/imgs/darts_convergence.png -------------------------------------------------------------------------------- /imgs/darts_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/imgs/darts_gradient.png -------------------------------------------------------------------------------- /imgs/darts_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/imgs/darts_loss.png -------------------------------------------------------------------------------- /imgs/topologies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/imgs/topologies.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/model.py -------------------------------------------------------------------------------- /operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/operations.py -------------------------------------------------------------------------------- /train_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/train_cifar10.py -------------------------------------------------------------------------------- /train_cifar100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/train_cifar100.py -------------------------------------------------------------------------------- /train_imagenet_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/train_imagenet_tiny.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuyao95/Understanding-NAS/HEAD/utils.py --------------------------------------------------------------------------------