Skip to content

edsnlp.pipelines.core.context.factory

DEFAULT_CONFIG = dict(context=['note_id']) module-attribute

create_component(nlp, name, context)

Source code in edsnlp/pipelines/core/context/factory.py
12
13
14
15
16
17
18
19
20
21
22
@Language.factory("eds.context", default_config=DEFAULT_CONFIG)
def create_component(
    nlp: Language,
    name: str,
    context: List[str],
):

    return ContextAdder(
        nlp,
        context=context,
    )
Back to top