Skip to content

edsnlp.pipelines.ner.scores.emergency.gemsa.patterns

regex = ['\\bgemsa\\b'] module-attribute

value_extract = '^.*?[\\n\\W]*?(\\d+)' module-attribute

score_normalization_str = 'score_normalization.gemsa' module-attribute

score_normalization(extracted_score)

GEMSA score normalization. If available, returns the integer value of the GEMSA score.

Source code in edsnlp/pipelines/ner/scores/emergency/gemsa/patterns.py
12
13
14
15
16
17
18
19
20
@spacy.registry.misc(score_normalization_str)
def score_normalization(extracted_score: Union[str, None]):
    """
    GEMSA score normalization.
    If available, returns the integer value of the GEMSA score.
    """
    score_range = [1, 2, 3, 4, 5, 6]
    if (extracted_score is not None) and (int(extracted_score) in score_range):
        return int(extracted_score)