-1

enter image description here enter image description here error while model.fit second screenshot

Tried reshaping, and give on the param out_put shape, BTW it doesn't exist

Help, second day trying to fix that`

1 Answers1

0

BTW, the answer was easy. Due to the fact that Autoencode trying to move from 3 to 4 dimension in ndarray, and while moving having a problems. So we need to add 1 dimension before.

ex:

test_data = [x, y, z]
temp = test_data[np.newaxis, ...] # so we get test_data = [1, x, y, z]
Manualmsdos
  • 1,505
  • 3
  • 11
  • 22