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
8 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 43 44 45 |
|
translation_table = str.maketrans(''.join(accent_group for (accent_group, _) in accents), ''.join(rep * len(accent_group) for (accent_group, rep) in accents))
instance-attribute
__init__(accents)
Source code in edsnlp/pipelines/core/normalizer/accents/accents.py
18 19 20 21 22 23 24 25 |
|
__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
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
factory
DEFAULT_CONFIG = dict(accents=None)
module-attribute
create_component(nlp, name, accents)
Source code in edsnlp/pipelines/core/normalizer/accents/factory.py
14 15 16 17 18 19 20 21 22 23 |
|