I am training an LSTM model on google colab and ^C is interrupting the training even though I am not using Ctrl+C to interrupt the training.
—-Earlier I was getting this error
model = tf.keras.models.load_model(‘model.h5’)
return legacy_h5_format.load_model_from_hdf5
—-and this error
raise ValueError(
ValueError: Unrecognized keyword arguments passed to LSTM: {‘time_major’: False}
so I tried changing the version of tensorflow in my google colab notebook to my local machines version, and changed the save format of the model from .h5 to default in order to retrain the model but now ^C keeps interrupting my runtime
Sarvesh Maheshwari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.