Fix calibration f1 metric fallback
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-07-07 02:20:56 +02:00
parent 590e5975f5
commit e8cd463cab
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ summary = {
"quality_score": quality_check.get("score"),
"precision": metrics.get("precision"),
"recall": metrics.get("recall"),
"f1_score": metrics.get("f1_score"),
"f1_score": metrics.get("f1_score", metrics.get("f1")),
"mean_iou": metrics.get("mean_iou"),
"matches": findings.get("matches"),
"false_positives": findings.get("false_positives"),