Hi, I succeessfully trained my model using
train.py --config_path config.json
Now I have more data so I want to continue where I left and start training with the new data. Would it be right if I do
train.py --config_path config.json --restore_path /path/to/your/model.pth.tar
that.
Is that enough for continues learning or am I wrong.
Also when I tried to do the same with
CUDA_VISIBLE_DEVICES=“0,1,2,3” distribute.py --config_path config.json --restore_path /path/to/your/model.pth.tar
It failed. Can you suggest what might be wrong there.
Thanks.