emotion-recognition-neural-networks
emotion-recognition-neural-networks copied to clipboard
Bug in the dataset_loader.py file
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)])
Yeah, I found it too. After this step my training set and validation set had the same length. In the cvs conversion everything was alright.