You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new "confusion matrix" feature is a great start, but I felt the interface is a bit hard to understand:
"F1 by confusion matrix" is not correct. It should just be "confusion matrix".
And also, usually a "confusion matrix" will have, for each true tag true_tag and predicted tag predicted_tag: cooccurrence(true_tag, predicted_tag)/count(true_tag), but right now it's just cooccurrence(true_tag, predicted_tag)/total_count. So we should either change the naming or the calculation.
The new "confusion matrix" feature is a great start, but I felt the interface is a bit hard to understand:
true_tag
and predicted tagpredicted_tag
:cooccurrence(true_tag, predicted_tag)/count(true_tag)
, but right now it's justcooccurrence(true_tag, predicted_tag)/total_count
. So we should either change the naming or the calculation.cc @PaulCCCCCCH
The text was updated successfully, but these errors were encountered: