edsnlp.pipelines.core.normalizer.accents
accents
Accents
Bases: object
Normalises accents, using a same-length strategy.
PARAMETER | DESCRIPTION |
---|---|
accents |
List of accentuated characters and their transcription.
TYPE:
|
Source code in edsnlp/pipelines/core/normalizer/accents/accents.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
__call__(doc)
Remove accents from spacy NORM
attribute.
PARAMETER | DESCRIPTION |
---|---|
doc |
The spaCy
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Doc
|
The document, with accents removed in |
Source code in edsnlp/pipelines/core/normalizer/accents/accents.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|