├── .gitignore ├── README.md ├── img ├── cells.png ├── cifar10.png ├── encoding.png ├── macro_network.gif ├── nd_normal_cell.gif ├── nd_reduce_cell.gif ├── overview_redraw.png ├── pf_macro.gif └── pf_micro.gif ├── misc ├── flops_counter.py └── utils.py ├── models ├── macro_decoder.py ├── macro_genotypes.py ├── macro_models.py ├── micro_genotypes.py ├── micro_models.py └── micro_operations.py ├── search ├── cifar10_search.py ├── evolution_search.py ├── macro_encoding.py ├── micro_encoding.py ├── nsganet.py └── train_search.py ├── validation ├── test.py └── train.py └── visualization ├── macro_visualize.py └── micro_visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/README.md -------------------------------------------------------------------------------- /img/cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/cells.png -------------------------------------------------------------------------------- /img/cifar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/cifar10.png -------------------------------------------------------------------------------- /img/encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/encoding.png -------------------------------------------------------------------------------- /img/macro_network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/macro_network.gif -------------------------------------------------------------------------------- /img/nd_normal_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/nd_normal_cell.gif -------------------------------------------------------------------------------- /img/nd_reduce_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/nd_reduce_cell.gif -------------------------------------------------------------------------------- /img/overview_redraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/overview_redraw.png -------------------------------------------------------------------------------- /img/pf_macro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/pf_macro.gif -------------------------------------------------------------------------------- /img/pf_micro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/img/pf_micro.gif -------------------------------------------------------------------------------- /misc/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/misc/flops_counter.py -------------------------------------------------------------------------------- /misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/misc/utils.py -------------------------------------------------------------------------------- /models/macro_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/macro_decoder.py -------------------------------------------------------------------------------- /models/macro_genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/macro_genotypes.py -------------------------------------------------------------------------------- /models/macro_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/macro_models.py -------------------------------------------------------------------------------- /models/micro_genotypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/micro_genotypes.py -------------------------------------------------------------------------------- /models/micro_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/micro_models.py -------------------------------------------------------------------------------- /models/micro_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/models/micro_operations.py -------------------------------------------------------------------------------- /search/cifar10_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/cifar10_search.py -------------------------------------------------------------------------------- /search/evolution_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/evolution_search.py -------------------------------------------------------------------------------- /search/macro_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/macro_encoding.py -------------------------------------------------------------------------------- /search/micro_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/micro_encoding.py -------------------------------------------------------------------------------- /search/nsganet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/nsganet.py -------------------------------------------------------------------------------- /search/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/search/train_search.py -------------------------------------------------------------------------------- /validation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/validation/test.py -------------------------------------------------------------------------------- /validation/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/validation/train.py -------------------------------------------------------------------------------- /visualization/macro_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/visualization/macro_visualize.py -------------------------------------------------------------------------------- /visualization/micro_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwhalen/nsga-net/HEAD/visualization/micro_visualize.py --------------------------------------------------------------------------------