Skip to content

COVID

The eds.covid pipeline component detects mentions of COVID19 and adds them to doc.ents.

Usage

import spacy

nlp = spacy.blank("fr")
nlp.add_pipe("eds.covid")

text = "Le patient est admis pour une infection au coronavirus."

doc = nlp(text)

doc.ents
# Out: (infection au coronavirus,)

Configuration

The pipeline can be configured using the following parameters :

PARAMETER DESCRIPTION
attr

Attribute to match on, eg TEXT, NORM, etc.

TYPE: Union[str, Dict[str, str]] DEFAULT: 'LOWER'

ignore_excluded

Whether to skip excluded tokens during matching.

TYPE: bool DEFAULT: False

ignore_space_tokens

Whether to skip space tokens during matching.

TYPE: bool DEFAULT: False

Authors and citation

The eds.covid pipeline was developed by AP-HP's Data Science team.