I developed a deep learning model a few years ago using TensorFlow 1.13.1 and saved it in the pb file format, which is the protobuf file format. If I migrate to TensorFlow 2.16 and try to load the same model, will it result in an error?
Hi @Surya_Elxsi, It is not possible to load the model saved in one Tensorflow version and load it in the different Tensorflow versions. Because there might be few enhancements for saving and loading the model in different versions which may cause incompatibility. Thank You.