@deprecated_factory(
"negation",
"eds.negation",
default_config=DEFAULT_CONFIG,
assigns=["span._.negation"],
)
@Language.factory(
"eds.negation",
default_config=DEFAULT_CONFIG,
assigns=["span._.negation"],
)
def create_component(
nlp: Language,
name: str,
attr: str,
pseudo: Optional[List[str]],
preceding: Optional[List[str]],
following: Optional[List[str]],
termination: Optional[List[str]],
verbs: Optional[List[str]],
on_ents_only: bool,
within_ents: bool,
explain: bool,
):
return Negation(
nlp=nlp,
attr=attr,
pseudo=pseudo,
preceding=preceding,
following=following,
termination=termination,
verbs=verbs,
on_ents_only=on_ents_only,
within_ents=within_ents,
explain=explain,
)