When using mectrics in model.compile in keras, report ValueError: ('Unknown metric function', ':f1score')

回眸只為那壹抹淺笑 提交于 2019-12-05 00:17:32

问题


I'm trying to run a LSTM, and when I use the code below:

model.compile(optimizer='rmsprop', loss='binary_crossentropy',
              metrics=['accuracy', 'f1score', 'precision', 'recall'])

It returns:

ValueError: ('Unknown metric function', ':f1score').

I've done my searches and found this url: https://github.com/fchollet/keras/issues/5400

The "metrics" in the "model.compile" part in this url is exactly the same as mine, and no errors are returned.


回答1:


I suspect you are using Keras 2.X. As explained in https://keras.io/metrics/, you can create custom metrics. These metrics appear to take only (y_true, y_pred) as function arguments, so a generalized implementation of fbeta is not possible.

Here is an implementation of f1_score based on the keras 1.2.2 source code.

import keras.backend as K

def f1_score(y_true, y_pred):

    # Count positive samples.
    c1 = K.sum(K.round(K.clip(y_true * y_pred, 0, 1)))
    c2 = K.sum(K.round(K.clip(y_pred, 0, 1)))
    c3 = K.sum(K.round(K.clip(y_true, 0, 1)))

    # If there are no true samples, fix the F1 score at 0.
    if c3 == 0:
        return 0

    # How many selected items are relevant?
    precision = c1 / c2

    # How many relevant items are selected?
    recall = c1 / c3

    # Calculate f1_score
    f1_score = 2 * (precision * recall) / (precision + recall)
    return f1_score

To use, simply add f1_score to your list of metrics when you compile your model, after defining the custom metric. For example:

model.compile(loss='categorical_crossentropy',
              optimizer='adam', 
              metrics=['accuracy',f1_score])



回答2:


K.epsilon() works well in this code. You can use this in the definition of c1, c2, and c3.



来源:https://stackoverflow.com/questions/43345909/when-using-mectrics-in-model-compile-in-keras-report-valueerror-unknown-metr

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!