Skip to content

edsnlp.pipelines.ner.scores.sofa.factory

DEFAULT_CONFIG = dict(regex=patterns.regex, value_extract=patterns.value_extract, score_normalization=patterns.score_normalization_str, attr='NORM', window=10, ignore_excluded=False, flags=0) module-attribute

create_component(nlp, name, regex, value_extract, score_normalization, attr, window, ignore_excluded, flags)

Source code in edsnlp/pipelines/ner/scores/sofa/factory.py
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@deprecated_factory(
    "SOFA",
    "eds.SOFA",
    default_config=DEFAULT_CONFIG,
    assigns=["doc.ents", "doc.spans"],
)
@Language.factory(
    "eds.SOFA",
    default_config=DEFAULT_CONFIG,
    assigns=["doc.ents", "doc.spans"],
)
def create_component(
    nlp: Language,
    name: str,
    regex: List[str],
    value_extract: List[Dict[str, str]],
    score_normalization: Union[str, Callable[[Union[str, None]], Any]],
    attr: str,
    window: int,
    ignore_excluded: bool,
    flags: Union[re.RegexFlag, int],
):
    return Sofa(
        nlp,
        score_name=name,
        regex=regex,
        value_extract=value_extract,
        score_normalization=score_normalization,
        attr=attr,
        window=window,
        ignore_excluded=ignore_excluded,
        flags=flags,
    )