Exotic structured image classifier in python
This implements one of result networks from Large-scale evolution of image classifiers by Esteban Real, et. al. Requirements Training Copy two files to {torchvision_path}/models cp {__init__.py,evloution.py} {torchvision_path}/models Run python main.py -a evolution {cifar10_data_dir} cf. How to know {torchvision_path}? import torchvision print(torchvision.__file__) Note The numbers of channels are not in the paper and it is set by me similar with vgg. You need to adjust these for better performance. If you want to adsjust
Read more