a-PyTorch-Tutorial-to-Image-Captioning
a-PyTorch-Tutorial-to-Image-Captioning copied to clipboard
Question about the checkpoint
Thanks for your wonderful project!
I tried to train the model using your way. Firstly I trained only the decoder with the batch size of 80 without fine-tune for 15 epochs. Then I tried to use fine-tune and recover to the checkpoint, but after I added the checkpoint path and ran it again, the training didn't begin. Can you help me solve this problem? Thanks!
Hi @Jazz1996 , thank you, does this still happen? If it does, let's try to figure out why and if there's a bug, I'd like to fix it.
When this happened, checkpoint
was set to the path of the un-fine-tuned checkpoint and fine_tune_encoder
was set to True
, correct?
Hi @sgrvinod , correct, and the training still doesn't begin.
Hi @Jazz1996 ,Have you solved this problem, I hope I can get your help
Hello, is there any solution to this problem?
It was a long time, so I can hardly remember this problem now. Sorry I do not have a solution to it.
is there any solution to this problem?
Yes, check your training loop. Maybe you'll find the range something like (10,10). So that's why it doesn't show any error. Check what value is assigned to start_epoch.
Hello,the epoch you set in your new train should bigger than the one in your last train.