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

  1. Copy two files to {torchvision_path}/models

cp {__init__.py,evloution.py} {torchvision_path}/models
  1. Run

python main.py -a evolution {cifar10_data_dir}

cf. How to know {torchvision_path}?

import torchvision
print(torchvision.__file__)

Note

  1. 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.

  2. If you want to adsjust

     

     

     

    To finish reading, please visit source site