Closed czaloom closed 1 month ago
F1 score computation is missing a scaling factor.
Current F1 Formula (Precision * Recall) / (Precision + Recall)
Actual F1 Formula (2 * Precision * Recall) / (Precision + Recall)
F1 should be correct.
valor version checks
Reproducible Example
Issue Description
Expected Behavior
F1 should be correct.