Open suharevA opened 1 year ago
Why did it happen?
test_y=test_y.reshape(120,1) print(test_y) ValueError Traceback (most recent call last) Input In [235], in <cell line: 1>() ----> 1 test_y=test_y.reshape(120,1) 2 print(test_y) ValueError: cannot reshape array of size 24 into shape (120,1)
test_y=test_y.reshape(24,1) I change it to this value and it work fine for me.
Why did it happen?