edsnlp.pipelines.ner.scores.factory
create_component(nlp, name='eds.score', score_name=None, regex=None, value_extract=None, score_normalization=None, attr='NORM', window=7, flags=0, ignore_excluded=False, ignore_space_tokens=False)
PARAMETER | DESCRIPTION |
---|---|
nlp |
The spaCy object.
TYPE:
|
name |
The name of the component.
TYPE:
|
score_name |
The name of the extracted score
TYPE:
|
regex |
A list of regexes to identify the score
TYPE:
|
attr |
Whether to match on the text ('TEXT') or on the normalized text ('NORM')
TYPE:
|
value_extract |
Regex with capturing group to get the score value
TYPE:
|
score_normalization |
Function that takes the "raw" value extracted from the
TYPE:
|
window |
Number of token to include after the score's mention to find the score's value
TYPE:
|
ignore_excluded |
Whether to ignore excluded spans when matching
TYPE:
|
ignore_space_tokens |
Whether to ignore space tokens when matching
TYPE:
|
flags |
Regex flags to use when matching
TYPE:
|
Source code in edsnlp/pipelines/ner/scores/factory.py
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|