How to train on a pretrained model?
somiltg opened this issue · 3 comments
somiltg commented
We are trying to transfer learn on pix2pix model by using the edges2shoes dataset and using --continue_train to train on our dataset. However, we receive an error regarding Discriminator saying that checkpoint is not present. Why is the checkpoint for discriminator not present in the pretrained model? Is it because it should only be used for testing and not training?
junyanz commented
We didn't save the discriminator. You need to train the discriminator from scratch.
somiltg commented
Do you mean we need to rerun the network on the entire Zappos dataset, because until we provide the checkpoint, we cannot use the pretrained model further. Can you suggest how we can go foorward with the method?