79334494

Date: 2025-01-06 22:29:20
Score: 1
Natty:
Report link

Your problem comes from your prediction.
As input, you have an array of vectors and in your first prediction you give an array to your model.
Your model was trained on an array of vectors.
To fix the problem, add a [ ].
This gives:

res = model.predict(testData[[0]])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ChibiShadow