Hi @isseu ,
There are two mistakes in the dataset_loader.py file. I wonder if you need to revise them.
See Line 17 and Line 19.
I think they should be changed to:
self._images_test = self._images_test .reshape([-1, SIZE_FACE, SIZE_FACE, 1])
self._labels_test = self._labels_test .reshape([-1, len(EMOTIONS)])
Hi @isseu , There are two mistakes in the dataset_loader.py file. I wonder if you need to revise them. See Line 17 and Line 19. I think they should be changed to: self._images_test = self._images_test .reshape([-1, SIZE_FACE, SIZE_FACE, 1]) self._labels_test = self._labels_test .reshape([-1, len(EMOTIONS)])