edsnlp.pipelines.ner.scores.emergency.ccmu.factory
create_component(nlp, name='eds.emergency.ccmu', regex=patterns.regex, value_extract=patterns.value_extract, score_normalization=patterns.score_normalization_str, attr='NORM', window=20, ignore_excluded=False, ignore_space_tokens=False, flags=0)
Matcher for the Emergency CCMU score.
PARAMETER | DESCRIPTION |
---|---|
nlp |
The spaCy Language object
TYPE:
|
name |
The name of the component
TYPE:
|
regex |
The regex patterns to match
TYPE:
|
value_extract |
The regex pattern to extract the value from the matched text
TYPE:
|
score_normalization |
The normalization function to apply to the extracted value
TYPE:
|
attr |
The token attribute to match on (e.g. "TEXT" or "NORM")
TYPE:
|
window |
The window size to search for the regex pattern
TYPE:
|
ignore_excluded |
Whether to ignore excluded tokens
TYPE:
|
ignore_space_tokens |
Whether to ignore space tokens
TYPE:
|
flags |
The regex flags to use
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Score
|
Source code in edsnlp/pipelines/ner/scores/emergency/ccmu/factory.py
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 85 86 87 |
|