Reputation: 57
In my classification task, I have to fine tune the inception V3 pretrained model. However, when I search over internet, it seems like I can only fine tune the last layer of this model. I want to fine tune all layers or at least the fully connected layer not only the top one. Is there anybody has the solution for that?
Thanks
Upvotes: 0
Views: 137
Reputation: 5206
Using any existing inception training code, telling it to load from a checkpoint containing the initial value you want to use, and running the normal training procedure will let you fine tune all layers.
Upvotes: 0