What strings are valid metrics with keras.model.compile?
keras.model.compile
The following works,
model.compile(optimizer='sgd', loss='mse', metrics=['acc'])
but this does not work,
model.compile(optimizer='sgd', loss='mse', metrics=['recall', 'precision'])
Check method to check metrices. Check docstring for details