i have trained the machine translation build in keras with deep learning
and i saved the whole mode as model.h5
model.save('model.h5')
and now i want load the model and test it
example takes the input from the user and then translate it
it is seq2seq how to load the model.h5 and how to test it ?
example in a new python file i will load the model.h5 and test it
model.load('model.h5')