i am beginner in tensorflow and i have one question related to save and restore checkpoint in Convolutional neural networks. I am trying to create CNN to classify faces. My question is:
If is it possible when i add new class in my dataset to make partial training? So i just want to retrain the new class instead to retrain the hole Network. is it possible to restore the weights and bias from previous training and train just the new class ?
i am using for save
saver = tf.train.Saver(tf.all_variables())
save = saver.save(session, "/home/owner//tensorflownew_models.ckpt")
print("Model saved in file: %s" % save)