February 2020
Intermediate to advanced
328 pages
8h 19m
English
There are mainly three ways to implement transfer learning:
The following code snippet demonstrates how to partially freeze the pre-trained part of the network. Before we unfreeze selected layers of the pre-trained network, we must define the holistic model and freeze the pre-trained part:
unfreeze_weights(pre_trained_base, from = "block5_conv1", to = "block5_conv3") ...
Read now
Unlock full access