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
TYPE:
|
ignore_excluded |
Whether to skip excluded tokens during matching.
TYPE:
|
ignore_space_tokens |
Whether to skip space tokens during matching.
TYPE:
|
Authors and citation
The eds.covid
pipeline was developed by AP-HP's Data Science team.