python keras can only predict one at a time code example
Example: model.predict([x_test]) error
Just put model.predict(x_test) instead of model.predict([x_test])
Just put model.predict(x_test) instead of model.predict([x_test])