resume-model-api / model /bias /system_checks.py
MossaicMan's picture
Upload 33 files
345000b verified
raw
history blame contribute delete
296 Bytes
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