We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello,想请教一下f1的计算方式: 您这里是这样计算的:f1 = (2 * precision[0] * recall[0] / (precision[0] + recall[0]),recall[1]),这里f1的update只用了recall,请问是怎么考虑的呢? 我觉得应该是这样:f1_update = 2 * update_op_precision * update_op_recall / (update_op_precision + update_op_recall + eps) 麻烦了,多谢多谢!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello,想请教一下f1的计算方式:
您这里是这样计算的:f1 = (2 * precision[0] * recall[0] / (precision[0] + recall[0]),recall[1]),这里f1的update只用了recall,请问是怎么考虑的呢?
我觉得应该是这样:f1_update = 2 * update_op_precision * update_op_recall / (update_op_precision + update_op_recall + eps)
麻烦了,多谢多谢!
The text was updated successfully, but these errors were encountered: