Spaces:
Build error
Build error
| def detect_score_dominance(scores: dict) -> list[str]: | |
| findings = [] | |
| if scores["semantic_similarity"] > 0.85 and scores["skill_match"] < 0.3: | |
| findings.append( | |
| "Semantic similarity heavily influenced score despite weak skill match" | |
| ) | |
| return findings | |