cp500 commited on
Commit
56fcc3f
·
verified ·
1 Parent(s): 0ad2053

Upload js/src/bio.ts with huggingface_hub

Browse files
Files changed (1) hide show
  1. js/src/bio.ts +92 -0
js/src/bio.ts ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * BIO-tag run-length decoder.
3
+ *
4
+ * The trained model emits per-wordpiece logits over three classes
5
+ * ``[O, B, I]``. We argmax + run-length-decode into ``[start, end]``
6
+ * span tuples (inclusive on both ends, in wordpiece coordinates).
7
+ *
8
+ * Mirrors ``_decode_bio`` in
9
+ * ``infon/scripts/train_coref_pointer.py`` — we keep ``validOnly``
10
+ * semantics intact so JS predictions and Python predictions decode
11
+ * identically.
12
+ */
13
+
14
+ /** BIO class indices, matching the trained model's head order. */
15
+ export const BIO_O = 0;
16
+ export const BIO_B = 1;
17
+ export const BIO_I = 2;
18
+
19
+ /**
20
+ * Argmax + run-length-decode BIO logits into wordpiece spans.
21
+ *
22
+ * @param logits Flat ``Float32Array`` of length ``T * 3``,
23
+ * row-major over wordpieces. Class ordering must be
24
+ * ``[O, B, I]``.
25
+ * @param attention Optional ``BigInt64Array`` mask ``(T,)`` — non-1
26
+ * positions are ignored (always ``O``). When the
27
+ * tokenizer pads to a fixed length pass this so we
28
+ * don't decode spans inside padding.
29
+ * @param threshold If set, a wordpiece is only labeled ``B``/``I``
30
+ * when its softmax probability for that class is
31
+ * above the threshold. ``undefined`` = pure argmax.
32
+ * Stricter thresholds reduce false-positive spans.
33
+ * @returns Spans as ``[start, end]`` *inclusive* wordpiece indices,
34
+ * in document order. Drops orphan ``I`` (no preceding ``B``)
35
+ * — same convention as Python's ``valid_only=True``.
36
+ */
37
+ export function decodeBio(
38
+ logits: Float32Array,
39
+ attention?: BigInt64Array,
40
+ threshold?: number,
41
+ ): [number, number][] {
42
+ const T = (attention?.length ?? logits.length / 3) | 0;
43
+ const labels = new Int32Array(T);
44
+ for (let t = 0; t < T; t++) {
45
+ if (attention && attention[t] === 0n) {
46
+ labels[t] = BIO_O;
47
+ continue;
48
+ }
49
+ const o = logits[t * 3 + BIO_O];
50
+ const b = logits[t * 3 + BIO_B];
51
+ const i = logits[t * 3 + BIO_I];
52
+
53
+ if (threshold !== undefined) {
54
+ // Softmax then threshold against the max non-O class. We don't
55
+ // need numerically stable softmax for two classes — relative
56
+ // ordering is enough — but we DO need to compare the chosen
57
+ // class's prob to ``threshold``.
58
+ const m = Math.max(o, b, i);
59
+ const eo = Math.exp(o - m);
60
+ const eb = Math.exp(b - m);
61
+ const ei = Math.exp(i - m);
62
+ const z = eo + eb + ei;
63
+ const pb = eb / z;
64
+ const pi = ei / z;
65
+ if (pb > pi && pb >= threshold) {
66
+ labels[t] = BIO_B;
67
+ } else if (pi >= pb && pi >= threshold) {
68
+ labels[t] = BIO_I;
69
+ } else {
70
+ labels[t] = BIO_O;
71
+ }
72
+ } else {
73
+ labels[t] = b >= o && b >= i ? BIO_B : i >= o ? BIO_I : BIO_O;
74
+ }
75
+ }
76
+
77
+ const spans: [number, number][] = [];
78
+ let t = 0;
79
+ while (t < T) {
80
+ if (labels[t] === BIO_B) {
81
+ let j = t + 1;
82
+ while (j < T && labels[j] === BIO_I) j++;
83
+ spans.push([t, j - 1]);
84
+ t = j;
85
+ } else {
86
+ // Orphan I (no preceding B) is silently dropped — matches Python
87
+ // ``valid_only=True``. O just advances.
88
+ t++;
89
+ }
90
+ }
91
+ return spans;
92
+ }