Skip to content
Advertisement

I keep getting ValueError: Shapes (10, 1) and (10, 3) are incompatible when training my model

Turning the number of inputs when I call makeModel from 3 to 1 allows the program to run without errors but no training actually happens and the accuracy doesn’t change.

JavaScript

Advertisement

Answer

LabelEncoder transforms the input to an array of encoded values. i.e if your input is ["paris", "paris", "tokyo", "amsterdam"] then they can be encoded as [0, 0, 1, 2]. It is not one-hot encoding scheme which is expected by categorical_crossentropy loss. If you have a integer encoding you will have to use sparse_categorical_crossentropy

Fix

change your code loss to sparse_categorical_crossentropy :

JavaScript

Sample

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement