Skip to content

edsnlp.pipelines.ner.covid.factory

DEFAULT_CONFIG = dict(attr='LOWER', ignore_excluded=False) module-attribute

create_component(nlp, name, attr, ignore_excluded)

Source code in edsnlp/pipelines/ner/covid/factory.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@Language.factory(
    "eds.covid",
    default_config=DEFAULT_CONFIG,
    assigns=["doc.ents", "doc.spans"],
)
def create_component(
    nlp: Language,
    name: str,
    attr: Union[str, Dict[str, str]],
    ignore_excluded: bool,
):

    return GenericMatcher(
        nlp,
        terms=None,
        regex=dict(covid=patterns.pattern),
        attr=attr,
        ignore_excluded=ignore_excluded,
    )