Quelle est la différence entre categorical_accuracy
et sparse_categorical_accuracy
à Keras? Il n'y a aucun indice dans la documentation de ces mesures , et en demandant au Dr Google, je n'ai pas trouvé de réponses pour cela non plus.
Le code source peut être trouvé ici :
def categorical_accuracy(y_true, y_pred):
return K.cast(K.equal(K.argmax(y_true, axis=-1),
K.argmax(y_pred, axis=-1)),
K.floatx())
def sparse_categorical_accuracy(y_true, y_pred):
return K.cast(K.equal(K.max(y_true, axis=-1),
K.cast(K.argmax(y_pred, axis=-1), K.floatx())),
K.floatx())