@Language.factory(
"eds.umls", 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,
term_matcher: TerminologyTermMatcher,
term_matcher_config: Dict[str, Any],
pattern_config: Dict[str, Any],
):
return TerminologyMatcher(
nlp,
label="umls",
regex=None,
terms=patterns.get_patterns(pattern_config),
attr=attr,
ignore_excluded=ignore_excluded,
term_matcher=term_matcher,
term_matcher_config=term_matcher_config,
)