Q:

load model keras

from tensorflow import keras
model = keras.models.load_model('path/to/location')
2
# Save the modelmodel.save('path_to_my_model.h5')# Recreate the exact same model purely from the filenew_model = keras.models.load_model('path_to_my_model.h5')
1

New to Communities?

Join the community