SkillForge / backend /scoring /gap_classifier.py
team99tech
Added changes
dfb3d07
raw
history blame contribute delete
186 Bytes
def classify_gap(final_score: float) -> str:
if final_score < 0.3:
return "high_gap"
elif final_score < 0.6:
return "medium_gap"
else:
return "ready"