Skip to content

edsnlp.pipelines.ner.scores.sofa.patterns

score_normalization(extracted_score)

Sofa score normalization. If available, returns the integer value of the SOFA score.

Source code in edsnlp/pipelines/ner/scores/sofa/patterns.py
34
35
36
37
38
39
40
41
42
43
@spacy.registry.misc(score_normalization_str)
def score_normalization(extracted_score: Union[str, None]):

    """
    Sofa score normalization.
    If available, returns the integer value of the SOFA score.
    """
    score_range = list(range(0, 30))
    if (extracted_score is not None) and (int(extracted_score) in score_range):
        return int(extracted_score)