Is it possible to freeze specific layers when using Tensorflow Object Detection API?
For example, I am using EfficientDet downloaded from the Tensorflow 2 Model Zoo. The model is (as you might know) already trained on objects that I am interested to detect (cars and boats in this case), but I want to train it more on my specific use case. At the same time I do not want it to “forget” what it has already learned. Hence, I need to freeze some of the layers.
So, is this possible?
I have found that I might can use the freeze_variables parameter in the pipeline.config file?