tokens
Attributes¶
log = structlog.getLogger()
module-attribute
¶
Classes¶
TokenizeTextConfig
¶
Bases: KiaraModuleConfig
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
51 52 53 54 55 56 57 58 59 |
|
Attributes¶
filter_non_alpha: bool = Field(description='Whether to filter out non alpha tokens.', default=True)
class-attribute
instance-attribute
¶
min_token_length: int = Field(description='The minimum token length.', default=3)
class-attribute
instance-attribute
¶
to_lowercase: bool = Field(description='Whether to lowercase the tokens.', default=True)
class-attribute
instance-attribute
¶
TokenizeTextModule
¶
Bases: KiaraModule
Tokenize a string.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
Attributes¶
_config_cls = TokenizeTextConfig
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
68 69 70 71 72 73 74 |
|
create_outputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
76 77 78 79 80 81 82 83 84 85 86 |
|
process(inputs: ValueMap, outputs: ValueMap) -> None
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
TokenizeTextArrayeModule
¶
Bases: KiaraModule
Split sentences into words or words into characters. In other words, this operation establishes the word boundaries (i.e., tokens) a very helpful way of finding patterns. It is also the typical step prior to stemming and lemmatization
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
Attributes¶
KIARA_METADATA = {'tags': ['tokenize', 'tokens']}
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
create_outputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
144 145 146 147 148 149 150 151 152 153 |
|
process(inputs: ValueMap, outputs: ValueMap)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
AssembleStopwordsModule
¶
Bases: KiaraModule
Create a list of stopwords from one or multiple sources.
This will download nltk stopwords if necessary, and merge all input lists into a single, sorted list without duplicates.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
Functions¶
create_inputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
create_outputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
215 216 217 218 219 220 221 222 223 224 |
|
process(inputs: ValueMap, outputs: ValueMap)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 |
|
PreprocessModule
¶
Bases: KiaraModule
Preprocess lists of tokens, incl. lowercasing, remove special characers, etc.
Lowercasing: Lowercase the words. This operation is a double-edged sword. It can be effective at yielding potentially better results in the case of relatively small datasets or datatsets with a high percentage of OCR mistakes. For instance, if lowercasing is not performed, the algorithm will treat USA, Usa, usa, UsA, uSA, etc. as distinct tokens, even though they may all refer to the same entity. On the other hand, if the dataset does not contain such OCR mistakes, then it may become difficult to distinguish between homonyms and make interpreting the topics much harder.
Removing stopwords and words with less than three characters: Remove low information words. These are typically words such as articles, pronouns, prepositions, conjunctions, etc. which are not semantically salient. There are numerous stopword lists available for many, though not all, languages which can be easily adapted to the individual researcher's needs. Removing words with less than three characters may additionally remove many OCR mistakes. Both these operations have the dual advantage of yielding more reliable results while reducing the size of the dataset, thus in turn reducing the required processing power. This step can therefore hardly be considered optional in TM.
Noise removal: Remove elements such as punctuation marks, special characters, numbers, html formatting, etc. This operation is again concerned with removing elements that may not be relevant to the text analysis and in fact interfere with it. Depending on the dataset and research question, this operation can become essential.
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
|
Attributes¶
KIARA_METADATA = {'tags': ['tokens', 'preprocess']}
class-attribute
instance-attribute
¶
Functions¶
create_inputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
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 395 396 |
|
create_outputs_schema() -> ValueSetSchema
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
398 399 400 401 402 403 404 405 406 407 |
|
process(inputs: ValueMap, outputs: ValueMap)
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
|
Functions¶
init_nltk()
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
19 20 21 22 23 |
|
get_stopwords()
¶
Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/language_processing/modules/tokens.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|