Machete¤
The Machete
class allows the user to cut raw text strings. Documents can be split into a pre-determined number of segments, based on the number of tokens (using a non language-aware tokenizer), based on pre-defined token lists, or based on patterns defined as milestones.
lexos.cutter.machete.Machete
¤
Codename Machete.
Source code in lexos\cutter\machete.py
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
|
__init__(tokenizer='whitespace')
¤
Initialize the class.
Source code in lexos\cutter\machete.py
48 49 50 |
|
merge(segments, sep=' ')
¤
Merge a list of segments into a single string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
segments |
List[str]
|
The list of segments to merge. |
required |
sep |
str
|
The separator to use. |
' '
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The merged string. |
Source code in lexos\cutter\machete.py
113 114 115 116 117 118 119 120 121 122 123 |
|
split(texts, n=1000, merge_threshold=0.5, overlap=None, tokenizer=None, as_string=True)
¤
Split texts into chunks by a fixed number of tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
texts |
Union[List[str], str]
|
A text string or list of text strings. |
required |
n |
int
|
The number of tokens to split on. |
1000
|
merge_threshold |
float
|
The threshold to merge the last segment. |
0.5
|
overlap |
int
|
The number of tokens to overlap. |
None
|
tokenizer |
str
|
The name of the tokenizer function to use. |
None
|
as_string |
bool
|
Whether to return the segments as a list of strings. |
True
|
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of lists or strings (segments) for each text. |
Source code in lexos\cutter\machete.py
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 |
|
split_list(text, n=1000, merge_threshold=0.5, overlap=None, as_string=False)
¤
Split a list into chunks by a fixed number of tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
List[str]
|
A list of tokens. |
required |
n |
int
|
The number of tokens to split on. |
1000
|
merge_threshold |
float
|
The threshold to merge the last segment. |
0.5
|
overlap |
int
|
The number of tokens to overlap. |
None
|
as_string |
bool
|
Whether to return the segments as a list of strings. |
False
|
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of token lists, one token list for each segment. |
Source code in lexos\cutter\machete.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
|
split_on_milestones(texts, milestone, preserve_milestones=True, tokenizer=None, as_string=True)
¤
Split texts on milestones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
texts |
Union[List[str], str]
|
A text string or list of text strings. |
required |
milestone |
Union[dict, str]
|
A variable representing the value(s) to be matched. |
required |
preserve_milestones |
bool
|
If True, the milestone token will be preserved at the beginning of every segment. Otherwise, it will be deleted. |
True
|
tokenizer |
str
|
The name of the tokenizer function to use. |
None
|
as_string |
bool
|
Whether to return the segments as a list of strings. |
True
|
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of lists or strings (segments) for each text. |
Note
The choice of tokenizer can lead to some unexpected results with regard to spacing
around the milestone. The default behaviour is to delete the milestone and any
following whitespace. If milestones are preserved, the milestone will occur at the
beginning of the following segment and will be followed by a single space. If the
segments are returned with as_string=False
, each token will have a following space
and it will be up to the end user to remove the space if desired.
Source code in lexos\cutter\machete.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
|
splitn(texts, n=2, merge_threshold=0.5, overlap=None, tokenizer=None, as_string=True)
¤
Get a specific number of sequential segments from a string or list of strings.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
texts |
Union[List[str], str]
|
A text string or list of text strings. |
required |
n |
int
|
The number of segments to create. Calculated automatically. |
2
|
merge_threshold |
float
|
The threshold to merge the last segment. |
0.5
|
overlap |
int
|
The number of tokens to overlap. |
None
|
tokenizer |
str
|
The name of the tokenizer function to use. |
None
|
as_string |
bool
|
Whether to return the segments as a list of strings. |
True
|
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of lists or strings (segments) for each text. |
Note
For this implementation, see https://stackoverflow.com/a/54802737.
Source code in lexos\cutter\machete.py
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
lexos.cutter.machete.SplitListModel
¤
Bases: BaseModel
Validate the input for split_list function.
Source code in lexos\cutter\machete.py
15 16 17 18 19 20 21 |
|
lexos.cutter.machete.SplitMilestoneModel
¤
Bases: BaseModel
Validate the input for split_on_miletone function.
Source code in lexos\cutter\machete.py
24 25 26 27 28 29 30 31 |
|
lexos.cutter.machete.SplitModel
¤
Bases: BaseModel
Validate the input for split functions.
Source code in lexos\cutter\machete.py
34 35 36 37 38 39 40 41 42 |
|