Does anyone have any idea of an easy way to modify input image size of a saved model in Keras?
For example the training input image size is 32x32, but in test I would like to input the full image 180x180.
The model has been saved and at test loaded as the following:
json_file = open('autoencoder64a.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("autoencoder64a.h5")
Many thanks,
Tina
--
You received this message because you are subscribed to the Google Groups "Keras-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users+unsubscribe@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/keras-users/efe0aed7-13fb-4459-8ef8-3265e9aac825%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-users...@googlegroups.com.