File size: 186 Bytes
dfb3d07
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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"