PyTorch CIFAR10

Note

If Oríon not installed: pip install orion

Set up

pip3 install torch torchvision

git clone https://github.com/kuangliu/pytorch-cifar.git
cd pytorch-cifar

Add to last line of test()

return 1 - (correct / len(test_loader.dataset))

Last line of the main() function

    test_error_rate = test(epoch)

report_objective(objective, name='test_error_rate')
orion -v hunt -n resnet18-cifar10 python main.py --lr~'loguniform(1e-5, 1.0)'

Note

If you are using python3, the script will fail with message

ImportError: No module named 'vgg'

You can fix this with the following command from the repository’s root.

sed -i 's/from /from ./g' models/__init__.py