Get Started with ZCls
-
Add dataset path to config_file, like CIFAR100
NAME: 'CIFAR100' TRAIN_ROOT: './data/cifar' TEST_ROOT: './data/cifar'Note 1: current support
CIFAR10/CIFAR100/FashionMNIST/ImageNetNote 2: use
BGRimage format -
Add environment variable
$ export PYTHONPATH=/path/to/ZCls -
Train
$ CUDA_VISIBLE_DEVICES=0 python tool/train.py -cfg=configs/cifar/r50_cifar100_224_e100_rmsprop.yamlAfter training, the corresponding model can be found in
outputs/ -
Using pretrained model, refer to Pretrained Model
-
If finished the training halfway, resume it like this
$ CUDA_VISIBLE_DEVICES=0 python tool/train.py -cfg=configs/cifar/r50_cifar100_224_e100_rmsprop.yaml --resume -
Use multiple GPU to train
$ CUDA_VISIBLE_DEVICES=0<,1,2,3> python tool/train.py -cfg=configs/cifar/r50_cifar100_224_e100_rmsprop.yaml -g=<N>