I just want to set all the parameters to not trainable expect the ones that are connected to dense_5 layer which are it's own parameters and the parameters of dense_6 layer that are connected to dense_5. How can I set these last parameters to trainable ? By assigning the trainable to true for the dense_6 layer, all the parameters become trainable even if they are not connected to dense_5.
You can not change trainable for a part of layer. Change the architecture: don't concat dense_5, add dense_7 after dense_5, concat outputs of dense_6 and dense_7. Then set trainable for dense_5 and Dense_7.
trainable
1.4m articles
1.4m replys
5 comments
57.0k users