edsnlp.pipelines.ner.disorders.base
DisorderMatcher
Bases: ContextualMatcher
Base class used to implement various disorders or behaviors extraction pipes
PARAMETER | DESCRIPTION |
---|---|
nlp |
spaCy
TYPE:
|
name |
The name of the pipe
TYPE:
|
patterns |
The configuration dictionary
TYPE:
|
include_assigned |
Whether to include (eventual) assign matches to the final entity
TYPE:
|
ignore_excluded |
Whether to skip excluded tokens during matching.
TYPE:
|
ignore_space_tokens |
Whether to skip space tokens during matching.
TYPE:
|
detailled_statusmapping |
Mapping from integer status (0, 1 or 2) to human-readable string
TYPE:
|
alignment_mode : str Overwrite alignment mode. regex_flags : Union[re.RegexFlag, int] RegExp flags to use when matching, filtering and assigning (See here)
Source code in edsnlp/pipelines/ner/disorders/base.py
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 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
__call__(doc)
Tags entities.
PARAMETER | DESCRIPTION |
---|---|
doc |
spaCy Doc object
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
doc
|
annotated spaCy Doc object
TYPE:
|
Source code in edsnlp/pipelines/ner/disorders/base.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
postprocess(doc, spans)
Can be overrid
Source code in edsnlp/pipelines/ner/disorders/base.py
104 105 106 107 108 |
|