edsnlp.pipelines.core.contextual_matcher.models
Flags = Union[re.RegexFlag, int]
module-attribute
Window = Union[Tuple[int, int], List[int], int]
module-attribute
AssignDict
Bases: dict
Custom dictionary that overrides the setitem method depending on the reduce_mode
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
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 |
|
reduce_mode = reduce_mode
instance-attribute
__init__(reduce_mode)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
38 39 40 41 |
|
__missing__(key)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
43 44 45 46 47 48 49 50 51 52 |
|
__setitem__(key, value)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
54 55 |
|
__setitem_options__()
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
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 |
|
SingleExcludeModel
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
89 90 91 92 93 94 95 96 97 98 99 100 |
|
regex: ListOrStr = []
class-attribute
window: Window = None
class-attribute
regex_flags: Optional[Flags] = None
class-attribute
exclude_regex_validation(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
94 95 96 97 98 |
|
ExcludeModel
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
103 104 105 106 107 108 109 110 111 112 113 114 |
|
__root__: Union[List[SingleExcludeModel], SingleExcludeModel] = None
class-attribute
item_to_list(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
110 111 112 113 114 |
|
SingleAssignModel
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|
name: str = None
class-attribute
regex: str = None
class-attribute
window: Window = None
class-attribute
regex_flags: Optional[Flags] = None
class-attribute
replace_entity: bool = False
class-attribute
reduce_mode: Optional[str] = None
class-attribute
check_single_regex_group(pat)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
125 126 127 128 129 130 131 132 133 134 135 136 |
|
AssignModel
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
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 |
|
__root__: Union[List[SingleAssignModel], SingleAssignModel] = None
class-attribute
item_to_list(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
148 149 150 151 152 |
|
name_uniqueness(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
154 155 156 157 158 |
|
replace_uniqueness(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
160 161 162 163 164 165 166 |
|
SingleConfig
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
169 170 171 172 173 174 175 176 177 |
|
source: str = None
class-attribute
terms: ListOrStr = []
class-attribute
regex: ListOrStr = []
class-attribute
regex_attr: Optional[str] = None
class-attribute
regex_flags: Union[re.RegexFlag, int] = None
class-attribute
exclude: Optional[ExcludeModel] = []
class-attribute
assign: Optional[AssignModel] = []
class-attribute
FullConfig
Bases: BaseModel
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
__root__: Union[List[SingleConfig], SingleConfig] = None
class-attribute
pattern_to_list(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
187 188 189 190 191 |
|
source_uniqueness(v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
193 194 195 196 197 |
|
normalize_window(cls, v)
Source code in edsnlp/pipelines/core/contextual_matcher/models.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|