File size: 10,928 Bytes
ee888e1 | 1 2 3 4 5 6 7 8 9 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 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 | /**
* Pure clustering + entity-veto logic for the embedding dedup path.
*
* This module is intentionally pure and side-effect free:
* - No Redis.
* - No fetch.
* - No env lookups (orchestrator reads env and passes thresholds in).
*
* The orchestrator in brief-dedup.mjs wires these helpers to the
* embedding client and the legacy Jaccard fallback.
*/
import { cosineSimilarity } from './brief-embedding.mjs';
import {
COMMON_CAPITALIZED,
LOCATION_GAZETTEER,
} from './entity-gazetteer.mjs';
// ββ Entity extraction / veto βββββββββββββββββββββββββββββββββββββββββββ
const CAPITALIZED_TOKEN_RE = /^[A-Z][a-zA-Z\-'.]{1,}$/;
// Longest multi-word entry in the gazetteer (e.g. "ho chi minh city"
// is 4 tokens). Precomputed once; the sliding window in
// extractEntities never tries phrases longer than this, so the cost
// stays O(N * MAX_PHRASE_LEN) rather than O(NΒ²).
const MAX_LOCATION_PHRASE_LEN = (() => {
let max = 1;
for (const entry of LOCATION_GAZETTEER) {
const len = entry.split(/\s+/).length;
if (len > max) max = len;
}
return max;
})();
function cleanToken(t) {
return t.replace(/[.,;:!?"')\]]+$/g, '').replace(/^["'([]+/g, '');
}
/**
* Pull proper-noun-like entities from a headline and classify them
* against the gazetteer.
*
* Locations are matched as **whole phrases** β single tokens like
* "Tokyo" AND multi-token phrases like "Red Sea", "Strait of Hormuz",
* "New York", "Abu Dhabi" all work. An earlier version tokenized on
* whitespace and only checked single tokens, which silently made
* ~30% of the gazetteer unreachable (bodies of water, regions,
* compound city names). That turned off the veto for a whole class
* of real headlines β hence the sliding-window greedy match below.
*
* Rules:
* 1. Tokenize on whitespace, strip surrounding punctuation.
* 2. Greedy match: at each position, try the longest multi-word
* location phrase first, down to 2 tokens. A phrase matches
* only when its first AND last tokens are capitalized (so
* "the middle east" in lowercase prose doesn't match, but
* "Middle East" in a headline does). Lowercase connectors
* like "of" / "and" may appear between them.
* 3. If no multi-word match: fall back to single-token lookup.
* Capitalized + not in COMMON_CAPITALIZED β Location if in
* gazetteer, Actor otherwise.
*
* Sentence-start tokens are intentionally kept β news headlines
* front-load the anchor entity ("Iran...", "Trump...").
*
* @param {string} title
* @returns {{ locations: string[], actors: string[] }}
*/
export function extractEntities(title) {
if (typeof title !== 'string' || title.length === 0) {
return { locations: [], actors: [] };
}
const tokens = title.split(/\s+/).map(cleanToken).filter(Boolean);
const locations = new Set();
const actors = new Set();
let i = 0;
while (i < tokens.length) {
// Greedy longest-phrase scan for multi-word locations.
let matchedLen = 0;
const maxTry = Math.min(MAX_LOCATION_PHRASE_LEN, tokens.length - i);
for (let L = maxTry; L >= 2; L--) {
const first = tokens[i];
const last = tokens[i + L - 1];
if (!CAPITALIZED_TOKEN_RE.test(first) || !CAPITALIZED_TOKEN_RE.test(last)) {
continue;
}
const phrase = tokens.slice(i, i + L).join(' ').toLowerCase();
if (LOCATION_GAZETTEER.has(phrase)) {
locations.add(phrase);
matchedLen = L;
break;
}
}
if (matchedLen > 0) {
i += matchedLen;
continue;
}
// Single-token classification.
const tok = tokens[i];
if (CAPITALIZED_TOKEN_RE.test(tok)) {
const lower = tok.toLowerCase();
if (!COMMON_CAPITALIZED.has(lower)) {
if (LOCATION_GAZETTEER.has(lower)) {
locations.add(lower);
} else {
actors.add(lower);
}
}
}
i += 1;
}
return {
locations: [...locations],
actors: [...actors],
};
}
/**
* Pairwise merge-veto.
*
* Fires when two titles share at least one location AND each side
* has at least one actor the other doesn't β "same venue, different
* protagonists" (canonical case: "Biden meets Xi in Tokyo" vs
* "Biden meets Putin in Tokyo").
*
* Empty proper-noun sets on either side β defer to cosine (return false).
*
* @param {string} titleA
* @param {string} titleB
* @returns {boolean}
*/
export function shouldVeto(titleA, titleB) {
const a = extractEntities(titleA);
const b = extractEntities(titleB);
if (a.actors.length === 0 && b.actors.length === 0) return false;
const bLocSet = new Set(b.locations);
const sharedLocation = a.locations.some((loc) => bLocSet.has(loc));
if (!sharedLocation) return false;
const aActorSet = new Set(a.actors);
const bActorSet = new Set(b.actors);
const aHasUnique = a.actors.some((act) => !bActorSet.has(act));
const bHasUnique = b.actors.some((act) => !aActorSet.has(act));
return aHasUnique && bHasUnique;
}
// ββ Complete-link clustering βββββββββββββββββββββββββββββββββββββββββββ
/**
* Greedy first-fit complete-link clustering.
*
* Admission rule: a candidate joins an existing cluster ONLY IF, for
* every member already in that cluster:
* 1. cosine(candidate.embedding, member.embedding) >= cosineThreshold
* 2. vetoFn(candidate, member) === false (if vetoFn provided)
*
* Single-link would admit C into {A,B} as long as C~B clears the bar,
* even if cosine(A,C) is low β the transitive chaining that re-
* created the bridge-pollution failure mode on the Jaccard side. We
* do NOT want that.
*
* Input items MUST be pre-sorted by the caller (the orchestrator in
* brief-dedup.mjs sorts by [currentScore DESC, sha256(title) ASC]).
* Changing input order changes cluster composition; the orchestrator
* owns the determinism contract.
*
* @param {Array<{title:string, embedding:number[]}>} items
* @param {object} opts
* @param {number} opts.cosineThreshold
* @param {((a: {title:string}, b: {title:string}) => boolean) | null} [opts.vetoFn]
* @returns {{ clusters: number[][], vetoFires: number }}
*/
export function completeLinkCluster(items, { cosineThreshold, vetoFn = null }) {
if (!Array.isArray(items)) {
return { clusters: [], vetoFires: 0 };
}
const clusters = [];
let vetoFires = 0;
for (let i = 0; i < items.length; i++) {
const candidate = items[i];
if (!candidate || !Array.isArray(candidate.embedding)) {
// Defensive: if an item somehow lacks an embedding, it goes in
// its own cluster rather than poisoning the whole batch.
clusters.push([i]);
continue;
}
let joined = false;
for (const cluster of clusters) {
let admissible = true;
for (const j of cluster) {
const member = items[j];
const cos = cosineSimilarity(candidate.embedding, member.embedding);
if (cos < cosineThreshold) {
admissible = false;
break;
}
if (vetoFn?.(candidate, member)) {
admissible = false;
vetoFires += 1;
break;
}
}
if (admissible) {
cluster.push(i);
joined = true;
break;
}
}
if (!joined) clusters.push([i]);
}
return { clusters, vetoFires };
}
// ββ Single-link clustering βββββββββββββββββββββββββββββββββββββββββββββ
/**
* Single-link agglomerative clustering via union-find.
*
* Admission rule: two items end up in the same cluster iff there
* EXISTS a path of pairwise merges, where every step has
* 1. cosine(a.embedding, b.embedding) >= cosineThreshold
* 2. vetoFn(a, b) === false (if vetoFn provided)
*
* This lets wire stories chain through a strong intermediate
* headline: ship-1 β ship-5 (0.63) and ship-5 β ship-8 (0.69) both
* clear, so all three merge even when ship-1 β ship-8 is only 0.50.
* Complete-link would block this whole cluster because of the one
* weak pair.
*
* The original plan rejected single-link to avoid "bridge pollution"
* (topically-unrelated stories chaining through a mixed-topic
* headline). With embeddings at threshold β₯ 0.60 the bridge has to
* be semantically real, so the empirical win on the 2026-04-20
* story set (F1 0.73 vs complete-link 0.53) outweighed the
* theoretical concern.
*
* Output cluster membership is independent of iteration order β the
* union-find shape is determined purely by the set of admissible
* pairs, so single-link is permutation-invariant by construction.
*
* @param {Array<{title:string, embedding:number[]}>} items
* @param {object} opts
* @param {number} opts.cosineThreshold
* @param {((a: {title:string}, b: {title:string}) => boolean) | null} [opts.vetoFn]
* @returns {{ clusters: number[][], vetoFires: number }}
*/
export function singleLinkCluster(items, { cosineThreshold, vetoFn = null }) {
if (!Array.isArray(items) || items.length === 0) {
return { clusters: [], vetoFires: 0 };
}
const n = items.length;
const parent = new Array(n);
const rank = new Array(n).fill(0);
for (let i = 0; i < n; i++) parent[i] = i;
const find = (x) => {
while (parent[x] !== x) {
parent[x] = parent[parent[x]];
x = parent[x];
}
return x;
};
const union = (a, b) => {
const ra = find(a);
const rb = find(b);
if (ra === rb) return;
if (rank[ra] < rank[rb]) parent[ra] = rb;
else if (rank[ra] > rank[rb]) parent[rb] = ra;
else { parent[rb] = ra; rank[ra]++; }
};
let vetoFires = 0;
for (let i = 0; i < n; i++) {
const a = items[i];
if (!a || !Array.isArray(a.embedding)) continue;
for (let j = i + 1; j < n; j++) {
const b = items[j];
if (!b || !Array.isArray(b.embedding)) continue;
// Already in the same cluster via a prior union β skip both
// the cosine and veto checks. Union-find makes this cheap.
if (find(i) === find(j)) continue;
const cos = cosineSimilarity(a.embedding, b.embedding);
if (cos < cosineThreshold) continue;
if (vetoFn?.(a, b)) {
vetoFires += 1;
continue;
}
union(i, j);
}
}
// Build clusters preserving the caller's input order: iterate
// items in order, group by their union-find root, and drop into
// a Map whose insertion order reflects first-appearance. Keeps
// downstream representative selection deterministic alongside
// the caller's pre-sort contract.
const byRoot = new Map();
for (let i = 0; i < n; i++) {
const r = find(i);
if (!byRoot.has(r)) byRoot.set(r, []);
byRoot.get(r).push(i);
}
return { clusters: [...byRoot.values()], vetoFires };
}
|