Reputation: 81
I would like to fine tune a pre-trained GAN available online using my own images. For example, BigGAN, which was trained on ImageNet, can generate realistic images. However, I do not want to generate the classes of images in ImageNet. I want to generate artificial images of my own image sets. How can I fine tune the pre-train models? Is it the same as fine-tuning other neural networks like a CNN image classification model? Is just replacing/retrain the last few layers is enough? It would be nice if I have see some examples in code of Tensorflow/Keras. Thanks so much!
BigGAN https://tfhub.dev/deepmind/biggan-deep-256/1
Upvotes: 6
Views: 3794
Reputation: 172
A couple of ways to do it is by:
References:
Upvotes: 1