blockers
DeepBlocker
Bases: EmbeddingBlocker
Base class for DeepBlocker strategies.
frame_encoder: DeepBlockerFrameEncoder: DeepBlocker strategy.
frame_encoder_kwargs: keyword arguments for initialisation of encoder
embedding_block_builder_kwargs: keyword arguments for initalising blockbuilder.
save: If true saves the embeddings before using blockbuilding.
save_dir: Directory where to save the embeddings.
force: If true, recalculate the embeddings and overwrite existing. Else use precalculated if present.
frame_encoder: DeepBlocker Encoder class to use for embedding the datasets.
embedding_block_builder: Block building class to create blocks from embeddings.
save: If true saves the embeddings before using blockbuilding.
save_dir: Directory where to save the embeddings.
force: If true, recalculate the embeddings and overwrite existing. Else use precalculated if present.
Examples:
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import DeepBlocker
>>> blocker = DeepBlocker(frame_encoder="autoencoder")
>>> blocks = blocker.assign(left=ds.left, right=ds.right)
Reference
Thirumuruganathan et. al. 'Deep Learning for Blocking in Entity Matching: A Design Space Exploration', VLDB 2021, http://vldb.org/pvldb/vol14/p2459-thirumuruganathan.pdf
Source code in klinker/blockers/embedding/deepblocker.py
15 16 17 18 19 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 | |
EmbeddingBlocker
Bases: SchemaAgnosticBlocker
Base class for embedding-based blocking approaches.
frame_encoder: Encoder class to use for embedding the datasets.
frame_encoder_kwargs: keyword arguments for initialising encoder class.
embedding_block_builder: Block building class to create blocks from embeddings.
embedding_block_builder_kwargs: keyword arguments for initalising blockbuilder.
save: If true saves the embeddings before using blockbuilding.
save_dir: Directory where to save the embeddings.
force: If true, recalculate the embeddings and overwrite existing. Else use precalculated if present.
frame_encoder: Encoder class to use for embedding the datasets.
embedding_block_builder: Block building class to create blocks from embeddings.
save: If true saves the embeddings before using blockbuilding.
save_dir: Directory where to save the embeddings.
force: If true, recalculate the embeddings and overwrite existing. Else use precalculated if present.
Source code in klinker/blockers/embedding/blocker.py
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 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 | |
save_encoded(save_dir, encodings, table_names)
staticmethod
Save embeddings.
save_dir: Union[str, pathlib.Path]: Directory to save into. encodings: Tuple[NamedVector, NamedVector]: Tuple of named embeddings. table_names: Tuple[str, str]: Name of left/right dataset.
Source code in klinker/blockers/embedding/blocker.py
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 | |
MinHashLSHBlocker
Bases: SchemaAgnosticBlocker
Blocker relying on MinHashLSH procedure.
tokenize_fn Callable: Function that tokenizes entity attribute values.
threshold: float: Jaccard threshold to use in underlying lsh procedure.
num_perm: int: number of permutations used in minhash algorithm.
weights: Tuple[float,float]: false positive/false negative weighting (must add up to one)
tokenize_fn Callable: Function that tokenizes entity attribute values.
threshold: float: Jaccard threshold to use in underlying lsh procedure.
num_perm: int: number of permutations used in minhash algorithm.
weights: Tuple[float,float]: false positive/false negative weighting (must add up to one)
Examples:
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import MinHashLSHBlocker
>>> blocker = MinHashLSHBlocker(threshold=0.8, weights=(0.7,0.3))
>>> blocks = blocker.assign(left=ds.left, right=ds.right)
Source code in klinker/blockers/lsh.py
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 | |
QgramsBlocker
Bases: StandardBlocker
Blocker relying on qgram procedure.
blocking_key: str: On which attribute the blocking should be done
q: int: how big the qgrams should be.
blocking_key: str: On which attribute the blocking should be done
q: int: how big the qgrams should be.
Examples:
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import QgramsBlocker
>>> blocker = QgramsBlocker(blocking_key="tail")
>>> blocks = blocker.assign(left=ds.left, right=ds.right)
Source code in klinker/blockers/qgrams.py
10 11 12 13 14 15 16 17 18 19 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |
assign(left, right, left_rel=None, right_rel=None)
Assign entity ids to blocks.
left: KlinkerFrame: Contains entity attribute information of left dataset. right: KlinkerFrame: Contains entity attribute information of right dataset. left_rel: Optional[KlinkerFrame]: (Default value = None) Contains relational information of left dataset. right_rel: Optional[KlinkerFrame]: (Default value = None) Contains relational information of left dataset.
KlinkerBlockManager: instance holding the resulting blocks.
Source code in klinker/blockers/qgrams.py
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 | |
qgram_tokenize(x)
Tokenize into qgrams.
x: str: input string
list of qgrams
Source code in klinker/blockers/qgrams.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
RelationalDeepBlocker
Bases: BaseRelationalBlocker
Seperate DeepBlocker strategy on concatenation of entity attribute values and neighboring values.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import RelationalDeepBlocker
>>> blocker = RelationalDeepBlocker(attr_frame_encoder="autoencoder", rel_frame_encoder="autoencoder")
>>> blocks = blocker.assign(left=ds.left, right=ds.right, left_rel=ds.left_rel, right_rel=ds.right_rel)
Source code in klinker/blockers/relation_aware.py
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 | |
RelationalMinHashLSHBlocker
Bases: BaseRelationalBlocker
Seperate MinHashLSH blocking on concatenation of entity attribute values and neighboring values.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import RelationalMinHashLSHBlocker
>>> blocker = RelationalMinHashLSHBlocker(attr_threshold=0.7, rel_threshold=0.9)
>>> blocks = blocker.assign(left=ds.left, right=ds.right, left_rel=ds.left_rel, right_rel=ds.right_rel)
Source code in klinker/blockers/relation_aware.py
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 | |
RelationalTokenBlocker
Bases: BaseRelationalBlocker
Seperate Tokenblocking on concatenation of entity attribute values and neighboring values.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import RelationalTokenBlocker
>>> blocker = RelationalTokenBlocker(attr_min_token_length=3, rel_min_token_length=5)
>>> blocks = blocker.assign(left=ds.left, right=ds.right, left_rel=ds.left_rel, right_rel=ds.right_rel)
Source code in klinker/blockers/relation_aware.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 | |
SimpleRelationalMinHashLSHBlocker
Bases: BaseSimpleRelationalBlocker
MinHashLSH blocking on concatenation of entity attribute values and neighboring values.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import SimpleRelationalTokenBlocker
>>> blocker = SimpleRelationalMinHashLSHBlocker()
>>> blocks = blocker.assign(left=ds.left, right=ds.right, left_rel=ds.left_rel, right_rel=ds.right_rel)
Source code in klinker/blockers/relation_aware.py
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 | |
SimpleRelationalTokenBlocker
Bases: BaseSimpleRelationalBlocker
Token blocking on concatenation of entity attribute values and neighboring values.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import SimpleRelationalTokenBlocker
>>> blocker = SimpleRelationalTokenBlocker()
>>> blocks = blocker.assign(left=ds.left, right=ds.right, left_rel=ds.left_rel, right_rel=ds.right_rel)
Source code in klinker/blockers/relation_aware.py
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 | |
StandardBlocker
Bases: Blocker
Block on same values of a specific column.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import StandardBlocker
>>> blocker = StandardBlocker(blocking_key="tail")
>>> blocks = blocker.assign(left=ds.left, right=ds.right)
Reference
Fellegi, Ivan P. and Alan B. Sunter. 'A Theory for Record Linkage.' Journal of the American Statistical Association 64 (1969): 1183-1210.
Source code in klinker/blockers/standard.py
10 11 12 13 14 15 16 17 18 19 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | |
assign(left, right, left_rel=None, right_rel=None)
Assign entity ids to blocks.
left: KlinkerFrame: Contains entity attribute information of left dataset. right: KlinkerFrame: Contains entity attribute information of right dataset. left_rel: Optional[KlinkerFrame]: (Default value = None) Contains relational information of left dataset. right_rel: Optional[KlinkerFrame]: (Default value = None) Contains relational information of left dataset.
KlinkerBlockManager: instance holding the resulting blocks.
Source code in klinker/blockers/standard.py
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 | |
TokenBlocker
Bases: SchemaAgnosticBlocker
Concatenates and tokenizes entity attribute values and blocks on tokens.
Examples
>>> # doctest: +SKIP
>>> from sylloge import MovieGraphBenchmark
>>> from klinker.data import KlinkerDataset
>>> ds = KlinkerDataset.from_sylloge(MovieGraphBenchmark(),clean=True)
>>> from klinker.blockers import TokenBlocker
>>> blocker = TokenBlocker()
>>> blocks = blocker.assign(left=ds.left, right=ds.right)
Source code in klinker/blockers/token_blocking.py
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 | |