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`
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`
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]