How to freeze tensorflow graph partly?
Couldn't find a way to freeze the TensorFlow graph partly. I just need to freeze a part of the weights of the network.
Couldn't find a way to freeze the TensorFlow graph partly. I just need to freeze a part of the weights of the network.
You can firstly save your existing model, after that, you can change your model architecture in your code, then load only that part from your checkpoint. Tensorflow lets you load only some part of the model. After loading you will have partly graph in the session, you can save it into pb file.