Restoring weights of an already saved Tensorflow .pb model

How to restore weights of a saved model from .pb using tf2?

Hi @zf359677387

Welcome to the TensorFlow Forum!

To restore the model weights, you need to reload the model and use model.get_weights() method to get the model weights. Please refer to this doc for the same. Thank you.