Tensorflow du modèle enregistré en charge
new_model = tf.keras.models.load_model('my_model.h5')
Zealous Zebra
new_model = tf.keras.models.load_model('my_model.h5')
#build the model
my_model.save('my_model.h5')
#to call the model
New_Model = tf.keras.models.load_model('my_model.h5')