@deprecated_factory(
"matcher",
"eds.matcher",
default_config=DEFAULT_CONFIG,
assigns=["doc.ents", "doc.spans"],
)
@Language.factory(
"eds.matcher", default_config=DEFAULT_CONFIG, assigns=["doc.ents", "doc.spans"]
)
def create_component(
nlp: Language,
name: str,
terms: Optional[Dict[str, Union[str, List[str]]]],
attr: Union[str, Dict[str, str]],
regex: Optional[Dict[str, Union[str, List[str]]]],
ignore_excluded: bool,
term_matcher: GenericTermMatcher,
term_matcher_config: Dict[str, Any],
):
assert not (terms is None and regex is None)
if terms is None:
terms = dict()
if regex is None:
regex = dict()
return GenericMatcher(
nlp,
terms=terms,
attr=attr,
regex=regex,
ignore_excluded=ignore_excluded,
term_matcher=term_matcher,
term_matcher_config=term_matcher_config,
)