@mailwoman/match 4.11.0 → 4.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/blocking.d.ts +1 -1
- package/out/blocking.js +1 -1
- package/out/clustering.d.ts +1 -1
- package/out/clustering.js +1 -1
- package/package.json +1 -1
package/out/blocking.d.ts
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*
|
|
17
17
|
* Recall is the priority — a pair the blocker never proposes can never match, the most dangerous
|
|
18
18
|
* silent failure in record linkage. So the spatial grid is generous and neighbour-expanded by
|
|
19
|
-
* default, and any block too large to scan is _reported_, never
|
|
19
|
+
* default, and any block too large to scan is _reported_, never silently dropped.
|
|
20
20
|
*/
|
|
21
21
|
/** Maps a record to zero or more block keys. Two records sharing any key become a candidate pair. */
|
|
22
22
|
export type BlockingKey<R> = (record: R) => string[];
|
package/out/blocking.js
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*
|
|
17
17
|
* Recall is the priority — a pair the blocker never proposes can never match, the most dangerous
|
|
18
18
|
* silent failure in record linkage. So the spatial grid is generous and neighbour-expanded by
|
|
19
|
-
* default, and any block too large to scan is _reported_, never
|
|
19
|
+
* default, and any block too large to scan is _reported_, never silently dropped.
|
|
20
20
|
*/
|
|
21
21
|
/**
|
|
22
22
|
* A spatial-cell block key: a configurable lat/lon grid. `precisionDegrees` sets the cell size
|
package/out/clustering.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* The pairwise scorer treats each pair independently, and its scores are NOT transitive: A~B at a
|
|
9
9
|
* high weight and B~C at a high weight does not guarantee A~C is a match. So a distinct stage is
|
|
10
10
|
* required to turn the graph of above-threshold links into coherent groups — skip it and your
|
|
11
|
-
* "entities"
|
|
11
|
+
* "entities" silently fracture or fuse.
|
|
12
12
|
*
|
|
13
13
|
* This ships the standard baseline: connected components of the link graph (union-find), with the
|
|
14
14
|
* link threshold as the precision/recall knob — raise it for tighter, purer clusters, lower it
|
package/out/clustering.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* The pairwise scorer treats each pair independently, and its scores are NOT transitive: A~B at a
|
|
9
9
|
* high weight and B~C at a high weight does not guarantee A~C is a match. So a distinct stage is
|
|
10
10
|
* required to turn the graph of above-threshold links into coherent groups — skip it and your
|
|
11
|
-
* "entities"
|
|
11
|
+
* "entities" silently fracture or fuse.
|
|
12
12
|
*
|
|
13
13
|
* This ships the standard baseline: connected components of the link graph (union-find), with the
|
|
14
14
|
* link threshold as the precision/recall knob — raise it for tighter, purer clusters, lower it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mailwoman/match",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.13.0",
|
|
4
4
|
"description": "The geocode-first record matcher: block → score → cluster. This first cut ships the string comparators (Jaro / Jaro-Winkler + an edit-distance fallback for compound surnames) that the Fellegi-Sunter scorer is built on.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|