Hello, Thanks for your replay. Please using .5 file to predict. Here is a demo. It needs to notice that the test file should regular as format as the training file.
from keras.models import load_model
model = load_model('my_model.h5')
print('test after load: ', model.predict(X_test[0:2]))
Hello, Thanks for your replay. Please using .5 file to predict. Here is a demo. It needs to notice that the test file should regular as format as the training file.