Huong Nguyen
Huong Nguyen

Reputation: 57

Fine tune other layer beside last one for the inception v3 pretrained model using tensorflow

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

Answers (1)

Alexandre Passos
Alexandre Passos

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

Related Questions