@deprecated_factory(
"emergency.priority", "eds.emergency.priority", default_config=DEFAULT_CONFIG
)
@Language.factory("eds.emergency.priority", default_config=DEFAULT_CONFIG)
def create_component(
nlp: Language,
name: str,
regex: List[str],
after_extract: str,
score_normalization: Union[str, Callable[[Union[str, None]], Any]],
attr: str,
window: int,
verbose: int,
ignore_excluded: bool,
):
return Score(
nlp,
score_name=name,
regex=regex,
after_extract=after_extract,
score_normalization=score_normalization,
attr=attr,
window=window,
verbose=verbose,
ignore_excluded=ignore_excluded,
)