edsnlp.pipelines.core.contextual_matcher.factory
create_component(nlp, name, patterns, assign_as_span, alignment_mode, attr, ignore_excluded, ignore_space_tokens, regex_flags, include_assigned)
Allows additional matching in the surrounding context of the main match group, for qualification/filtering.
PARAMETER | DESCRIPTION |
---|---|
nlp |
spaCy
TYPE:
|
name |
The name of the pipe
TYPE:
|
patterns |
The configuration dictionary
TYPE:
|
assign_as_span |
Whether to store eventual extractions defined via the
TYPE:
|
attr |
Attribute to match on, eg
TYPE:
|
ignore_excluded |
Whether to skip excluded tokens during matching.
TYPE:
|
alignment_mode |
Overwrite alignment mode.
TYPE:
|
regex_flags |
RegExp flags to use when matching, filtering and assigning (See here)
TYPE:
|
include_assigned |
Whether to include (eventual) assign matches to the final entity
TYPE:
|
Source code in edsnlp/pipelines/core/contextual_matcher/factory.py
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 |
|