Keras custom recall metric based on predicted values

与世无争的帅哥 提交于 2019-12-04 10:13:39

Thanks for citing my previous answer.

In this case, if you are using tensorflow backend, I would suggest you to use this tensorflow function :

tf.nn.in_top_k(
    predictions,
    targets,
    k,
    name=None
)

It outputs a tensor of bools, 1 if the answer belongs to top k and 0 if it doesn't.

If you need more info, I have linked the tensorflow documentation. I hope it helps. :-)

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