简体   繁体   中英

What does “model.trainable = False” mean in Keras?

I want to freeze a pre-trained network in Keras. I found base.trainable = False in the documentation. But I didn't understand how it works. With len(model.trainable_weights) I found out that I have 30 trainable weights. How can that be? The network shows total trainable params: 16,812,353. After freezing I have 4 trainable weights. Maybe I don't understand the difference between params and weights. Unfortunately I am a beginner in Deep Learning. Maybe someone can help me.

A Keras Model is trainable by default - you have two means of freezing all the weights:

  1. model.trainable = False before compiling the model
  2. for layer in model.layers: layer.trainable = False - works before & after compiling

(1) must be done before compilation since Keras treats model.trainable as a boolean flag at compiling, and performs (2) under the hood. After doing either of the above, you should see:

print(model.trainable_weights)
# [] 

Regarding the docs, likely outdated - see linked source code above, up-to-date.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM