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
Is it possible to add F_beta to the list of measures? This is in case I want to weight P or R more than the other? F_b = (1 + b^2) * (precision * recall) / ((b^2 * precision) + recall)
Hey,
Is it possible to add F_beta to the list of measures? This is in case I want to weight P or R more than the other?
F_b = (1 + b^2) * (precision * recall) / ((b^2 * precision) + recall)
seqeval/seqeval/metrics/sequence_labeling.py
Line 124 in 445d997
score = (1 + b**2) * p * r / ((b**2 * p) + r) if p + r > 0 else 0
seqeval/seqeval/metrics/sequence_labeling.py
Line 149 in 445d997
The text was updated successfully, but these errors were encountered: