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 Default
attr spaCy attribute to match on (eg NORM, TEXT, LOWER) "LOWER"
ignore_excluded Whether to ignore excluded tokens for matching False

Authors and citation

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

Back to top