PyTorch-StudioGAN
PyTorch-StudioGAN copied to clipboard
How to resume training from checkpoint weights
How can I resume the GAN I have been training, if I canceled the training, using the weights being saved in the checkpoints folder?
Thanks
You can use the exact command that you've used when training with a single addition of -ckpt LOCATION_TO_YOUR_CHECKPOINT_FOLDER option. The model will then train from the last saved checkpoint. If you specify -best option, training will continue from the best checkpoint so far.