edsnlp.pipelines.trainable.span_qualifier.utils
make_candidate_getter
Source code in edsnlp/pipelines/trainable/span_qualifier/utils.py
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 109 110 111 |
|
__init__(on_ents=None, on_span_groups=False, qualifiers=None, label_constraints=None)
Make a span qualifier candidate getter function.
PARAMETER | DESCRIPTION |
---|---|
on_ents |
Whether to look into
TYPE:
|
on_span_groups |
Whether to look into
TYPE:
|
qualifiers |
The qualifiers to predict or train on. If None, keys from the
TYPE:
|
label_constraints |
Constraints to select qualifiers for each span depending on their labels. Keys of the dict are the qualifiers and values are the labels for which the qualifier is allowed. If None, all qualifiers will be used for all spans
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Callable[[Doc], Tuple[Spans, Optional[Spans], SpanGroups, List[List[str]]]]
|
Source code in edsnlp/pipelines/trainable/span_qualifier/utils.py
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 |
|
make_binding_getter(qualifier)
Make a qualifier getter
PARAMETER | DESCRIPTION |
---|---|
qualifier |
Either one of the following:
- a path to a nested attributes of the span, such as "qualifier_" or "_.negated"
- a tuple of (key, value) equality, such as
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Callable[[Span], bool]
|
The qualifier getter |
Source code in edsnlp/pipelines/trainable/span_qualifier/utils.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
make_binding_setter(binding)
Make a qualifier setter
PARAMETER | DESCRIPTION |
---|---|
binding |
A pair of
- a path to a nested attributes of the span, such as
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Callable[[Span]]
|
The qualifier setter |
Source code in edsnlp/pipelines/trainable/span_qualifier/utils.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
|