Skip to content Skip to sidebar Skip to footer

Predict Result For Single Record Using Keras Model Predict

I have created model using Keras. Here is the associated code. - https://github.com/CVxTz/ECG_Heartbeat_Classification/blob/master/code/baseline_mitbih.py I could run it and get m

Solution 1:

You can pass a single array of 188 columns to predict the output.

model.predict(np.array([0,1,..,187]))

Post a Comment for "Predict Result For Single Record Using Keras Model Predict"