edsnlp.matchers.phrase
EDSPhraseMatcher
Bases: object
PhraseMatcher that matches "over" excluded tokens.
PARAMETER | DESCRIPTION |
---|---|
vocab |
spaCy vocabulary to match on.
TYPE:
|
attr |
Default attribute to match on, by default "TEXT".
Can be overiden in the To match on a custom attribute, prepend the attribute name with
TYPE:
|
ignore_excluded |
Whether to ignore excluded tokens, by default True
TYPE:
|
exclude_newlines |
Whether to exclude new lines, by default False
TYPE:
|
Source code in edsnlp/matchers/phrase.py
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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
create_pattern(match_pattern, attr=None, ignore_excluded=None)
Create a pattern
PARAMETER | DESCRIPTION |
---|---|
match_pattern |
A spaCy doc object, to use as match model.
TYPE:
|
attr |
Overwrite attribute to match on.
TYPE:
|
ignore_excluded |
Whether to skip excluded tokens.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[PatternDict]
|
A spaCy rule-based pattern. |
Source code in edsnlp/matchers/phrase.py
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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
build_patterns(nlp, terms)
Build patterns and adds them for matching. Helper function for pipelines using this matcher.
PARAMETER | DESCRIPTION |
---|---|
nlp |
The instance of the spaCy language class.
TYPE:
|
terms |
Dictionary of label/terms, or label/dictionary of terms/attribute.
TYPE:
|
Source code in edsnlp/matchers/phrase.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
|
add(key, patterns, attr=None, ignore_excluded=None)
Add a pattern.
PARAMETER | DESCRIPTION |
---|---|
key |
Key of the new/updated pattern.
TYPE:
|
patterns |
List of patterns to add.
TYPE:
|
attr |
Overwrite the attribute to match on for this specific pattern.
TYPE:
|
ignore_excluded |
Overwrite the parameter for this specific pattern.
TYPE:
|
Source code in edsnlp/matchers/phrase.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
remove(key)
Remove a pattern.
PARAMETER | DESCRIPTION |
---|---|
key |
key of the pattern to remove.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
ValueError
|
Should the key not be contained in the registry. |
Source code in edsnlp/matchers/phrase.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
|
__call__(doclike, as_spans=False)
Performs matching. Yields matches.
PARAMETER | DESCRIPTION |
---|---|
doclike |
spaCy Doc or Span object.
TYPE:
|
as_spans |
Whether to return matches as spans.
DEFAULT:
|
YIELDS | DESCRIPTION |
---|---|
match
|
A match. |
Source code in edsnlp/matchers/phrase.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|