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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
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
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
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
504
505
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
//! HMM algorithm implementation: Viterbi decoding, forward-backward,
//! feature extraction, and emission scoring.
//!
//! All methods are on `impl HmmNER` and require the struct definition from `super`.
use super::*;
impl HmmNER {
/// Create a new HMM NER model with default parameters.
#[must_use]
pub fn new() -> Self {
Self::with_config(HmmConfig::default())
}
/// Create a new HMM NER model using only heuristic parameters (no bundled params).
///
/// This is useful for E2E evaluation comparisons (heuristic vs bundled-trained).
#[must_use]
pub fn new_heuristic() -> Self {
Self::with_config_no_bundled(HmmConfig::default())
}
/// Create with custom configuration.
#[must_use]
pub fn with_config(config: HmmConfig) -> Self {
Self::with_config_internal(config, true)
}
/// Create with custom configuration, skipping bundled params even if the feature is enabled.
#[must_use]
pub fn with_config_no_bundled(config: HmmConfig) -> Self {
Self::with_config_internal(config, false)
}
fn with_config_internal(config: HmmConfig, allow_bundled: bool) -> Self {
let states = vec![
"O".to_string(),
"B-PER".to_string(),
"I-PER".to_string(),
"B-ORG".to_string(),
"I-ORG".to_string(),
"B-LOC".to_string(),
"I-LOC".to_string(),
"B-MISC".to_string(),
"I-MISC".to_string(),
];
let state_to_idx: HashMap<String, usize> = states
.iter()
.enumerate()
.map(|(i, s)| (s.clone(), i))
.collect();
let n = states.len();
// Initialize transition probabilities with BIO constraints
let mut transitions = vec![vec![0.0; n]; n];
Self::init_transitions(&mut transitions, &states, &config);
// Initialize with uniform priors, biased toward O
// Initial state distribution - more balanced to allow entities at start
let mut initial = vec![0.0; n];
for (i, state) in states.iter().enumerate() {
if state == "O" {
initial[i] = 0.4; // O is common but not dominant
} else if state.starts_with("B-") {
initial[i] = 0.15; // Entities can start sentences
} else if state.starts_with("I-") {
initial[i] = config.smoothing; // I- can't start
}
}
Self::normalize(&mut initial);
// Initialize emission probabilities with heuristics
let emissions = Self::init_emissions(&states, &state_to_idx);
let mut m = Self {
config,
states,
state_to_idx,
transitions,
initial,
emissions,
backoff: None,
};
// Optional bundled params (priors + transitions only). These are small enough to ship,
// and they don't embed word identity emissions.
if allow_bundled {
if let Some(p) = Self::bundled_params() {
if p.states == m.states
&& p.initial.len() == m.states.len()
&& p.transitions.len() == m.states.len()
&& p.transitions.iter().all(|r| r.len() == m.states.len())
{
let backoff = HmmBackoff::from_params(&p);
m.backoff = Some(backoff);
// Prefer bundled dynamics when configured (the default config does),
// since the bundled params are intended to be a real end-to-end baseline.
//
// You can force-enable via env var, or force-disable via config.
let use_dynamics_env = std::env::var("ANNO_HMM_USE_BUNDLED_DYNAMICS")
.ok()
.is_some_and(|v| {
let s = v.trim();
s == "1"
|| s.eq_ignore_ascii_case("true")
|| s.eq_ignore_ascii_case("yes")
});
let use_dynamics = m.config.use_bundled_dynamics || use_dynamics_env;
if use_dynamics {
m.initial = p.initial.clone();
m.transitions = p.transitions.clone();
}
}
}
}
m
}
fn bundled_params() -> Option<HmmParams> {
#[cfg(feature = "bundled-hmm-params")]
{
static ONCE: OnceLock<Option<HmmParams>> = OnceLock::new();
ONCE.get_or_init(|| {
let s = include_str!("../hmm_params.json");
let v: serde_json::Value = serde_json::from_str(s).ok()?;
let states = v
.get("states")?
.as_array()?
.iter()
.map(|x| x.as_str().map(|s| s.to_string()))
.collect::<Option<Vec<_>>>()?;
let initial = v
.get("initial")?
.as_array()?
.iter()
.map(|x| x.as_f64())
.collect::<Option<Vec<_>>>()?;
let transitions = v
.get("transitions")?
.as_array()?
.iter()
.map(|row| {
row.as_array()?
.iter()
.map(|x| x.as_f64())
.collect::<Option<Vec<_>>>()
})
.collect::<Option<Vec<_>>>()?;
let backoff = v.get("backoff")?.clone();
Some(HmmParams {
states,
initial,
transitions,
backoff,
})
})
.clone()
}
#[cfg(not(feature = "bundled-hmm-params"))]
{
None
}
}
/// Initialize transition matrix with BIO constraints.
fn init_transitions(trans: &mut [Vec<f64>], states: &[String], config: &HmmConfig) {
let n = states.len();
for i in 0..n {
for j in 0..n {
let from = &states[i];
let to = &states[j];
// BIO constraints
if let Some(entity_type) = to.strip_prefix("I-") {
let valid_b = format!("B-{}", entity_type);
let valid_i = format!("I-{}", entity_type);
if from == &valid_b || from == &valid_i {
trans[i][j] = 0.3; // Valid continuation
} else {
trans[i][j] = config.smoothing; // Invalid (very low)
}
} else if to.starts_with("B-") {
trans[i][j] = 0.1; // Entities are relatively rare
} else {
// O tag
trans[i][j] = 0.5; // Most transitions go to O
}
}
// Normalize row
Self::normalize(&mut trans[i]);
}
}
/// Initialize emission probabilities with comprehensive gazetteers.
///
/// These are empirically-tuned emission probabilities based on word lists
/// commonly found in NER training data (CoNLL-2003, OntoNotes, etc.).
fn init_emissions(
_states: &[String],
state_to_idx: &HashMap<String, usize>,
) -> HashMap<(usize, String), f64> {
let mut emissions = HashMap::new();
// Comprehensive person indicators (names, titles, honorifics)
let person_indicators = [
// Common first names
"john",
"mary",
"james",
"david",
"michael",
"robert",
"william",
"richard",
"sarah",
"jennifer",
"elizabeth",
"lisa",
"marie",
"jane",
"emily",
"anna",
"barack",
"donald",
"joe",
"george",
"bill",
"hillary",
"satya",
"jeff",
"angela",
"vladimir",
"emmanuel",
"xi",
"narendra",
"justin",
"rishi",
"steve",
"tim",
"mark",
"satya",
"sundar",
"sheryl",
"sam",
"dario",
// Common surnames (political, tech, historical)
"obama",
"biden",
"trump",
"bush",
"clinton",
"reagan",
"kennedy",
"lincoln",
"merkel",
"macron",
"putin",
"jinping",
"modi",
"trudeau",
"sunak",
"musk",
"bezos",
"zuckerberg",
"gates",
"jobs",
"wozniak",
"cook",
"pichai",
"nadella",
"altman",
"amodei",
"hassabis",
"hinton",
"lecun",
"bengio",
"smith",
"johnson",
"williams",
"brown",
"jones",
"garcia",
"miller",
"davis",
// Honorifics and titles
"mr",
"mrs",
"ms",
"dr",
"prof",
"sir",
"lord",
"lady",
"president",
"ceo",
"chairman",
"director",
"minister",
"senator",
"mayor",
"governor",
"chancellor",
"prime",
"secretary",
"ambassador",
"general",
"admiral",
];
// Comprehensive organization indicators
let org_indicators = [
// Company names
"google",
"apple",
"microsoft",
"amazon",
"facebook",
"meta",
"tesla",
"ibm",
"intel",
"nvidia",
"oracle",
"cisco",
"adobe",
"netflix",
"uber",
"toyota",
"honda",
"ford",
"chevrolet",
"bmw",
"mercedes",
"audi",
// Suffixes
"inc",
"corp",
"ltd",
"llc",
"co",
"plc",
"gmbh",
"ag",
"sa",
"company",
"corporation",
"incorporated",
"limited",
"group",
"holdings",
// Institutional
"university",
"institute",
"college",
"academy",
"school",
"hospital",
"foundation",
"association",
"organization",
"committee",
"council",
"department",
"ministry",
"agency",
"bureau",
"commission",
// Government/International
"fbi",
"cia",
"nsa",
"nasa",
"un",
"nato",
"who",
"imf",
"eu",
"usa",
"parliament",
"congress",
"senate",
"house",
"court",
"bank",
];
// Comprehensive location indicators
let loc_indicators = [
// US cities/states
"new",
"york",
"california",
"texas",
"florida",
"washington",
"chicago",
"boston",
"seattle",
"san",
"francisco",
"los",
"angeles",
"las",
"vegas",
"miami",
"denver",
"atlanta",
"phoenix",
"dallas",
"houston",
"portland",
// World cities
"london",
"paris",
"berlin",
"tokyo",
"beijing",
"moscow",
"sydney",
"toronto",
"vancouver",
"rome",
"madrid",
"amsterdam",
"brussels",
"vienna",
"seoul",
"singapore",
"hong",
"kong",
"dubai",
"mumbai",
"delhi",
// Countries/regions
"united",
"states",
"america",
"china",
"russia",
"germany",
"france",
"japan",
"india",
"brazil",
"canada",
"australia",
"uk",
"britain",
"italy",
"spain",
"mexico",
"korea",
"taiwan",
"vietnam",
"thailand",
// Geographic terms
"city",
"county",
"state",
"country",
"province",
"region",
"district",
"river",
"mountain",
"lake",
"ocean",
"sea",
"island",
"peninsula",
"north",
"south",
"east",
"west",
"central",
"northern",
"southern",
];
// Set higher emission probabilities for known indicators
for word in person_indicators {
let b_idx = state_to_idx["B-PER"];
let i_idx = state_to_idx["I-PER"];
emissions.insert((b_idx, word.to_string()), 0.4);
emissions.insert((i_idx, word.to_string()), 0.25);
}
for word in org_indicators {
let b_idx = state_to_idx["B-ORG"];
let i_idx = state_to_idx["I-ORG"];
emissions.insert((b_idx, word.to_string()), 0.4);
emissions.insert((i_idx, word.to_string()), 0.25);
}
for word in loc_indicators {
let b_idx = state_to_idx["B-LOC"];
let i_idx = state_to_idx["I-LOC"];
emissions.insert((b_idx, word.to_string()), 0.4);
emissions.insert((i_idx, word.to_string()), 0.25);
}
emissions
}
/// Normalize a probability vector.
fn normalize(vec: &mut [f64]) {
let sum: f64 = vec.iter().sum();
if sum > 0.0 {
for v in vec.iter_mut() {
*v /= sum;
}
}
}
/// Get emission probability for (state, word).
pub(super) fn emission_prob(&self, state_idx: usize, word: &str) -> f64 {
let lower = word.to_lowercase();
// Check explicit emissions (known entity names)
if let Some(&prob) = self.emissions.get(&(state_idx, lower.clone())) {
return prob;
}
// If we have bundled backoff emissions, prefer them over heuristics.
// These are compact, trained probabilities over generic word features (no word identity).
if let Some(b) = self.backoff.as_ref() {
// Emission score uses a naive Bayes factorization:
// P(features | state) = P(len_bucket | state) * Π_f P(f|state)^(present) * (1-P(f|state))^(absent)
// We only use the small set of features in the bundled table.
let lb = Self::len_bucket(word);
let mut sum_log = 0.0f64;
if let Some(p) = b.len.get(lb).and_then(|v| v.get(state_idx).copied()) {
sum_log += p.max(1e-12).ln();
} else {
sum_log += (1e-12f64).ln();
}
let feats = Self::bool_features(word);
for k in &b.bool_keys {
let present = feats.get(k.as_str()).copied().unwrap_or(false);
let p_present = b
.bool_present
.get(k)
.and_then(|v| v.get(state_idx).copied())
.unwrap_or(1e-12)
.clamp(1e-12, 1.0 - 1e-12);
let p = if present { p_present } else { 1.0 - p_present };
sum_log += p.max(1e-12).ln();
}
let mut score = sum_log.exp().max(self.config.smoothing);
// State 0 is "O" in our state list.
if state_idx != 0 {
score *= self.config.non_o_emission_scale.max(1e-6);
}
return score.max(self.config.smoothing);
}
// Heuristic emissions based on word features
let state = &self.states[state_idx];
let is_capitalized = word.chars().next().is_some_and(|c| c.is_uppercase());
let is_all_caps =
word.chars().all(|c| c.is_uppercase() || !c.is_alphabetic()) && word.len() > 1;
let has_digit = word.chars().any(|c| c.is_ascii_digit());
let is_title_case = is_capitalized && word.len() > 1;
// Check for organization suffixes
let org_suffixes = [
"Inc", "Corp", "Ltd", "LLC", "Co", "Company", "Inc.", "Corp.", "Ltd.",
];
let is_org_suffix = org_suffixes.contains(&word);
if state == "O" {
// Non-capitalized words and digits are likely O
if !is_capitalized {
return 0.7;
}
// Capitalized at sentence start - unclear
if has_digit {
return 0.5;
}
// Title case words are less likely to be O
if is_title_case {
return 0.15;
}
return 0.4;
}
if state.starts_with("B-") || state.starts_with("I-") {
let entity_type = &state[2..];
// Organization suffixes strongly indicate ORG
if entity_type == "ORG" && is_org_suffix {
return 0.8;
}
// All caps = likely ORG (acronyms like IBM, NASA)
if is_all_caps && entity_type == "ORG" {
return 0.6;
}
// Title case words are likely entities, but prefer PER for typical names
// Most proper nouns starting with capital letters are person names
// unless they have organization-specific markers
if is_title_case && !has_digit {
if entity_type == "PER" {
return 0.55; // Slightly prefer PER over others for title case
} else if entity_type == "LOC" {
return 0.45; // Locations are second most common title case
} else if entity_type == "ORG" {
return 0.35; // ORGs need more evidence (suffix, acronym)
}
return 0.4;
}
// Capitalized words at least somewhat likely
if is_capitalized && !has_digit {
return 0.3;
}
return self.config.smoothing;
}
self.config.smoothing
}
/// Viterbi decoding to find most likely state sequence.
pub(super) fn viterbi(&self, words: &[&str]) -> Vec<usize> {
if words.is_empty() {
return vec![];
}
let n = words.len();
let m = self.states.len();
// Use log probabilities for numerical stability
let log = |p: f64| if p > 0.0 { p.ln() } else { f64::NEG_INFINITY };
// DP tables
let mut dp = vec![vec![f64::NEG_INFINITY; m]; n];
let mut backptr = vec![vec![0usize; m]; n];
// Initialize first position
for (j, cell) in dp[0].iter_mut().enumerate().take(m) {
*cell = log(self.initial[j]) + log(self.emission_prob(j, words[0]));
}
// Forward pass
for t in 1..n {
for j in 0..m {
let emit = log(self.emission_prob(j, words[t]));
for i in 0..m {
let trans = log(self.transitions[i][j]);
let score = dp[t - 1][i] + trans + emit;
if score > dp[t][j] {
dp[t][j] = score;
backptr[t][j] = i;
}
}
}
}
// Find best final state
let mut best_state = 0;
let mut best_score = f64::NEG_INFINITY;
for (j, &score) in dp[n - 1].iter().enumerate() {
if score > best_score {
best_score = score;
best_state = j;
}
}
// Backtrack
let mut path = vec![0usize; n];
path[n - 1] = best_state;
for t in (0..n - 1).rev() {
path[t] = backptr[t + 1][path[t + 1]];
}
path
}
/// Convert BIO labels to entities.
///
/// Uses token position tracking to correctly handle duplicate entity texts.
/// The previous implementation used `text.find()` which always returned the
/// first occurrence, causing incorrect offsets for duplicate entities.
pub(super) fn decode_entities(
&self,
text: &str,
words: &[&str],
labels: &[usize],
) -> Vec<Entity> {
use crate::offset::SpanConverter;
let converter = SpanConverter::new(text);
let mut entities = Vec::new();
// Track token positions (byte offsets) as we iterate
let token_positions: Vec<(usize, usize)> = Self::calculate_token_positions(text, words);
let mut current: Option<(usize, usize, EntityType, Vec<&str>)> = None;
for (i, (&label_idx, &word)) in labels.iter().zip(words.iter()).enumerate() {
let label = &self.states[label_idx];
if label.starts_with("B-") {
// Save previous entity
if let Some((start_idx, end_idx, entity_type, entity_words)) = current.take() {
Self::push_entity_from_positions(
&converter,
&token_positions,
start_idx,
end_idx,
&entity_words,
entity_type,
&mut entities,
);
}
// Start new entity
let entity_type_str = label
.strip_prefix("B-")
.or_else(|| label.strip_prefix("I-"))
.expect("label should start with B- or I-");
let entity_type = match entity_type_str {
"PER" => EntityType::Person,
"ORG" => EntityType::Organization,
"LOC" => EntityType::Location,
other => EntityType::custom(other, EntityCategory::Misc),
};
current = Some((i, i, entity_type, vec![word]));
} else if label.starts_with("I-") && current.is_some() {
if let Some((_, ref mut end_idx, _, ref mut entity_words)) = current {
entity_words.push(word);
*end_idx = i;
}
} else {
// O tag
if let Some((start_idx, end_idx, entity_type, entity_words)) = current.take() {
Self::push_entity_from_positions(
&converter,
&token_positions,
start_idx,
end_idx,
&entity_words,
entity_type,
&mut entities,
);
}
}
}
// Final entity
if let Some((start_idx, end_idx, entity_type, entity_words)) = current {
Self::push_entity_from_positions(
&converter,
&token_positions,
start_idx,
end_idx,
&entity_words,
entity_type,
&mut entities,
);
}
entities
}
/// Calculate byte positions for each token in the text.
pub(super) fn calculate_token_positions(text: &str, tokens: &[&str]) -> Vec<(usize, usize)> {
let mut positions = Vec::with_capacity(tokens.len());
let mut byte_pos = 0;
for token in tokens {
// Find token starting from current position
if let Some(rel_pos) = text[byte_pos..].find(token) {
let start = byte_pos + rel_pos;
let end = start + token.len();
positions.push((start, end));
byte_pos = end; // Move past this token
} else {
// Fallback: use current position (shouldn't happen with whitespace tokenization)
positions.push((byte_pos, byte_pos));
}
}
positions
}
/// Helper to create entity with correct character offsets using token positions.
fn push_entity_from_positions(
converter: &crate::offset::SpanConverter,
positions: &[(usize, usize)],
start_token_idx: usize,
end_token_idx: usize,
words: &[&str],
entity_type: EntityType,
entities: &mut Vec<Entity>,
) {
if start_token_idx >= positions.len() || end_token_idx >= positions.len() {
return;
}
let byte_start = positions[start_token_idx].0;
let byte_end = positions[end_token_idx].1;
let char_start = converter.byte_to_char(byte_start);
let char_end = converter.byte_to_char(byte_end);
let entity_text = words.join(" ");
entities.push(Entity::new(
entity_text,
entity_type,
char_start,
char_end,
0.65, // HMM confidence
));
}
/// Train the HMM from labeled data.
///
/// # Arguments
/// * `sentences` - List of (words, tags) pairs
pub fn train(&mut self, sentences: &[(&[&str], &[&str])]) {
// Count transitions
let n = self.states.len();
let mut trans_counts = vec![vec![0usize; n]; n];
let mut initial_counts = vec![0usize; n];
let mut emission_counts: HashMap<(usize, String), usize> = HashMap::new();
let mut state_counts = vec![0usize; n];
for (words, tags) in sentences {
if tags.is_empty() {
continue;
}
// Initial state
if let Some(&idx) = self.state_to_idx.get(tags[0]) {
initial_counts[idx] += 1;
}
// Transitions and emissions
for (i, (word, tag)) in words.iter().zip(tags.iter()).enumerate() {
if let Some(&tag_idx) = self.state_to_idx.get(*tag) {
// Emission count
*emission_counts
.entry((tag_idx, word.to_lowercase()))
.or_insert(0) += 1;
state_counts[tag_idx] += 1;
// Transition count
if i > 0 {
if let Some(&prev_idx) = self.state_to_idx.get(tags[i - 1]) {
trans_counts[prev_idx][tag_idx] += 1;
}
}
}
}
}
// Convert counts to probabilities (with smoothing)
let total_initial: f64 =
initial_counts.iter().sum::<usize>() as f64 + self.config.smoothing * n as f64;
for (i, &count) in initial_counts.iter().enumerate() {
self.initial[i] = (count as f64 + self.config.smoothing) / total_initial;
}
for (i, row) in trans_counts.iter().enumerate().take(n) {
let total: f64 = row.iter().sum::<usize>() as f64 + self.config.smoothing * n as f64;
for (j, &count) in row.iter().enumerate().take(n) {
self.transitions[i][j] = (count as f64 + self.config.smoothing) / total;
}
}
for ((state_idx, word), count) in emission_counts {
let total = state_counts[state_idx] as f64;
if total > 0.0 {
self.emissions
.insert((state_idx, word), count as f64 / total);
}
}
}
fn len_bucket(word: &str) -> &'static str {
let n = word.chars().count();
if n <= 1 {
"len:1"
} else if n == 2 {
"len:2"
} else if n == 3 {
"len:3"
} else if (4..=5).contains(&n) {
"len:4_5"
} else if (6..=8).contains(&n) {
"len:6_8"
} else {
"len:9p"
}
}
fn bool_features(word: &str) -> HashMap<&'static str, bool> {
let is_capitalized = word.chars().next().is_some_and(|c| c.is_uppercase());
let is_all_caps = word.chars().all(|c| c.is_uppercase() || !c.is_alphabetic())
&& word.chars().count() > 1;
let is_digit = !word.is_empty() && word.chars().all(|c| c.is_ascii_digit());
let has_digit = word.chars().any(|c| c.is_ascii_digit());
let has_hyphen = word.contains('-');
let has_dot = word.contains('.');
let mut m = HashMap::new();
m.insert("is_capitalized", is_capitalized);
m.insert("is_all_caps", is_all_caps);
m.insert("is_digit", is_digit);
m.insert("has_digit", has_digit);
m.insert("has_hyphen", has_hyphen);
m.insert("has_dot", has_dot);
m
}
}
impl HmmBackoff {
fn from_params(p: &HmmParams) -> Self {
// backoff schema:
// {
// "len": { bucket: { state: prob } },
// "bool": { feat: { state: p_present } }
// }
let mut len: HashMap<String, Vec<f64>> = HashMap::new();
let mut bool_present: HashMap<String, Vec<f64>> = HashMap::new();
if let Some(obj) = p.backoff.as_object() {
if let Some(len_obj) = obj.get("len").and_then(|v| v.as_object()) {
for (bucket, distv) in len_obj {
let mut v = vec![1e-12; p.states.len()];
if let Some(dist) = distv.as_object() {
for (i, state) in p.states.iter().enumerate() {
if let Some(x) = dist.get(state).and_then(|x| x.as_f64()) {
v[i] = x;
}
}
}
len.insert(bucket.clone(), v);
}
}
if let Some(bool_obj) = obj.get("bool").and_then(|v| v.as_object()) {
for (feat, distv) in bool_obj {
let mut v = vec![1e-12; p.states.len()];
if let Some(dist) = distv.as_object() {
for (i, state) in p.states.iter().enumerate() {
if let Some(x) = dist.get(state).and_then(|x| x.as_f64()) {
v[i] = x;
}
}
}
bool_present.insert(feat.clone(), v);
}
}
}
let mut bool_keys: Vec<String> = bool_present.keys().cloned().collect();
bool_keys.sort();
Self {
len,
bool_present,
bool_keys,
}
}
}
impl Default for HmmNER {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::*;
/// Build a minimal HMM with hand-crafted parameters (no bundled params),
/// so tests are deterministic regardless of feature flags.
fn tiny_hmm() -> HmmNER {
HmmNER::new_heuristic()
}
// ── normalize ───────────────────────────────────────────────────
#[test]
fn normalize_sums_to_one() {
let mut v = vec![2.0, 3.0, 5.0];
HmmNER::normalize(&mut v);
let sum: f64 = v.iter().sum();
assert!((sum - 1.0).abs() < 1e-12, "sum = {sum}");
assert!((v[0] - 0.2).abs() < 1e-12);
assert!((v[1] - 0.3).abs() < 1e-12);
assert!((v[2] - 0.5).abs() < 1e-12);
}
#[test]
fn normalize_all_zeros_unchanged() {
let mut v = vec![0.0, 0.0, 0.0];
HmmNER::normalize(&mut v);
assert!(v.iter().all(|&x| x == 0.0), "all-zero vec should stay zero");
}
// ── len_bucket ──────────────────────────────────────────────────
#[test]
fn len_bucket_boundaries() {
assert_eq!(HmmNER::len_bucket("a"), "len:1");
assert_eq!(HmmNER::len_bucket("ab"), "len:2");
assert_eq!(HmmNER::len_bucket("abc"), "len:3");
assert_eq!(HmmNER::len_bucket("abcd"), "len:4_5");
assert_eq!(HmmNER::len_bucket("abcde"), "len:4_5");
assert_eq!(HmmNER::len_bucket("abcdef"), "len:6_8");
assert_eq!(HmmNER::len_bucket("abcdefgh"), "len:6_8");
assert_eq!(HmmNER::len_bucket("abcdefghi"), "len:9p");
assert_eq!(HmmNER::len_bucket("abcdefghijklm"), "len:9p");
}
#[test]
fn len_bucket_unicode_counts_chars_not_bytes() {
// 3 CJK characters = 9 bytes, but 3 chars -> bucket "len:3"
assert_eq!(HmmNER::len_bucket("\u{6771}\u{4EAC}\u{90FD}"), "len:3");
}
// ── bool_features ───────────────────────────────────────────────
#[test]
fn bool_features_capitalized() {
let f = HmmNER::bool_features("Google");
assert!(f["is_capitalized"]);
assert!(!f["is_all_caps"]);
assert!(!f["is_digit"]);
assert!(!f["has_digit"]);
assert!(!f["has_hyphen"]);
assert!(!f["has_dot"]);
}
#[test]
fn bool_features_all_caps_acronym() {
let f = HmmNER::bool_features("NASA");
assert!(f["is_capitalized"]);
assert!(f["is_all_caps"]);
}
#[test]
fn bool_features_digit_and_hyphen() {
let f = HmmNER::bool_features("F-16");
assert!(f["has_digit"]);
assert!(f["has_hyphen"]);
assert!(!f["is_digit"]);
}
#[test]
fn bool_features_pure_number() {
let f = HmmNER::bool_features("2024");
assert!(f["is_digit"]);
assert!(f["has_digit"]);
}
#[test]
fn bool_features_dotted() {
let f = HmmNER::bool_features("U.S.");
assert!(f["has_dot"]);
}
// ── emission_prob (heuristic path) ──────────────────────────────
#[test]
fn emission_lowercase_non_entity_favors_o() {
let hmm = tiny_hmm();
let o = hmm.state_to_idx["O"];
let b_per = hmm.state_to_idx["B-PER"];
let p_o = hmm.emission_prob(o, "works");
let p_bper = hmm.emission_prob(b_per, "works");
assert!(
p_o > p_bper,
"lowercase common word should score higher for O ({p_o}) than B-PER ({p_bper})"
);
}
#[test]
fn emission_known_gazetteer_word() {
let hmm = tiny_hmm();
let b_org = hmm.state_to_idx["B-ORG"];
// "google" is in the org gazetteer
let p = hmm.emission_prob(b_org, "google");
assert!(
(p - 0.4).abs() < 1e-9,
"gazetteer hit should return 0.4, got {p}"
);
}
#[test]
fn emission_org_suffix_hits_gazetteer() {
let hmm = tiny_hmm();
let b_org = hmm.state_to_idx["B-ORG"];
// "Inc" lowercased is "inc", which is in the org gazetteer.
// The gazetteer lookup fires first (returns 0.4) before the
// heuristic org-suffix branch (0.8) is reached.
let p = hmm.emission_prob(b_org, "Inc");
assert!(
(p - 0.4).abs() < 1e-9,
"org suffix 'Inc' hits gazetteer first, expected 0.4, got {p}"
);
}
#[test]
fn emission_org_suffix_not_in_gazetteer() {
let hmm = tiny_hmm();
let b_org = hmm.state_to_idx["B-ORG"];
// "LLC" is in the gazetteer too. Use a suffix NOT in the gazetteer
// to exercise the heuristic branch.
let p = hmm.emission_prob(b_org, "Incorporated");
// "incorporated" IS in the gazetteer -> 0.4
// Try something truly absent from both gazetteer and suffix list:
// The heuristic path for a title-case word with entity_type "ORG" returns 0.35.
let p2 = hmm.emission_prob(b_org, "Widgets");
assert!(
(p2 - 0.35).abs() < 1e-9,
"Title-case non-gazetteer word should score 0.35 for B-ORG, got {p2}"
);
// Meanwhile the gazetteer word scores higher
assert!(p > p2, "gazetteer word ({p}) should beat heuristic ({p2})");
}
// ── viterbi ─────────────────────────────────────────────────────
#[test]
fn viterbi_empty_input() {
let hmm = tiny_hmm();
let path = hmm.viterbi(&[]);
assert!(path.is_empty());
}
#[test]
fn viterbi_single_token() {
let hmm = tiny_hmm();
let path = hmm.viterbi(&["hello"]);
assert_eq!(path.len(), 1);
// A single lowercase word should decode as O (state 0)
assert_eq!(path[0], hmm.state_to_idx["O"]);
}
#[test]
fn viterbi_path_all_valid_states() {
let hmm = tiny_hmm();
let words: Vec<&str> = "The quick brown fox jumps over the lazy dog"
.split_whitespace()
.collect();
let path = hmm.viterbi(&words);
assert_eq!(path.len(), words.len());
let n_states = hmm.states.len();
for &s in &path {
assert!(s < n_states, "state index {s} out of bounds (n={n_states})");
}
}
#[test]
fn viterbi_trained_model_finds_entity() {
// The heuristic-only model has a strong O prior that dominates even
// gazetteer emissions. Training shifts the dynamics so entities are
// actually decodable.
let mut hmm = tiny_hmm();
let sentences: Vec<(&[&str], &[&str])> = vec![
(&["John", "works"][..], &["B-PER", "O"][..]),
(&["Mary", "runs"][..], &["B-PER", "O"][..]),
(&["David", "left"][..], &["B-PER", "O"][..]),
];
hmm.train(&sentences);
let words = vec!["John", "works"];
let path = hmm.viterbi(&words);
let b_per = hmm.state_to_idx["B-PER"];
assert_eq!(
path[0], b_per,
"After training, 'John' should decode as B-PER, got '{}'",
hmm.states[path[0]]
);
}
#[test]
fn emission_gazetteer_vs_heuristic_o() {
// Lowercase "john" hits the person gazetteer (B-PER = 0.4),
// but the O heuristic for non-capitalized words returns 0.7.
// This shows why the heuristic model alone struggles: the O
// emission dominates even for gazetteer-known names when lowercase.
let hmm = tiny_hmm();
let b_per = hmm.state_to_idx["B-PER"];
let o = hmm.state_to_idx["O"];
let p_bper = hmm.emission_prob(b_per, "john");
let p_o = hmm.emission_prob(o, "john");
assert!((p_bper - 0.4).abs() < 1e-9, "B-PER gazetteer = {p_bper}");
assert!((p_o - 0.7).abs() < 1e-9, "O heuristic (lowercase) = {p_o}");
// Capitalized "John" has different heuristic for O (title_case -> 0.15)
// and gazetteer still fires for B-PER (0.4).
let p_bper_cap = hmm.emission_prob(b_per, "John");
let p_o_cap = hmm.emission_prob(o, "John");
assert!((p_bper_cap - 0.4).abs() < 1e-9);
assert!(
p_bper_cap > p_o_cap,
"Capitalized 'John': B-PER ({p_bper_cap}) should exceed O ({p_o_cap})"
);
}
// ── decode_entities ─────────────────────────────────────────────
#[test]
fn decode_entities_single_b_tag() {
let hmm = tiny_hmm();
let text = "John works";
let words: Vec<&str> = text.split_whitespace().collect();
let b_per = hmm.state_to_idx["B-PER"];
let o = hmm.state_to_idx["O"];
let labels = vec![b_per, o];
let entities = hmm.decode_entities(text, &words, &labels);
assert_eq!(entities.len(), 1);
assert_eq!(entities[0].text, "John");
assert_eq!(entities[0].entity_type, EntityType::Person);
assert_eq!(entities[0].start(), 0);
assert_eq!(entities[0].end(), 4);
}
#[test]
fn decode_entities_multi_token_entity() {
let hmm = tiny_hmm();
let text = "New York is big";
let words: Vec<&str> = text.split_whitespace().collect();
let b_loc = hmm.state_to_idx["B-LOC"];
let i_loc = hmm.state_to_idx["I-LOC"];
let o = hmm.state_to_idx["O"];
let labels = vec![b_loc, i_loc, o, o];
let entities = hmm.decode_entities(text, &words, &labels);
assert_eq!(entities.len(), 1);
assert_eq!(entities[0].text, "New York");
assert_eq!(entities[0].entity_type, EntityType::Location);
// "New" starts at char 0, "York" ends at char 8
assert_eq!(entities[0].start(), 0);
assert_eq!(entities[0].end(), 8);
}
#[test]
fn decode_entities_two_adjacent_entities() {
let hmm = tiny_hmm();
let text = "John Google";
let words: Vec<&str> = text.split_whitespace().collect();
let b_per = hmm.state_to_idx["B-PER"];
let b_org = hmm.state_to_idx["B-ORG"];
let labels = vec![b_per, b_org];
let entities = hmm.decode_entities(text, &words, &labels);
assert_eq!(entities.len(), 2);
assert_eq!(entities[0].text, "John");
assert_eq!(entities[0].entity_type, EntityType::Person);
assert_eq!(entities[1].text, "Google");
assert_eq!(entities[1].entity_type, EntityType::Organization);
}
#[test]
fn decode_entities_entity_at_end() {
let hmm = tiny_hmm();
let text = "works at Google";
let words: Vec<&str> = text.split_whitespace().collect();
let o = hmm.state_to_idx["O"];
let b_org = hmm.state_to_idx["B-ORG"];
let labels = vec![o, o, b_org];
let entities = hmm.decode_entities(text, &words, &labels);
assert_eq!(entities.len(), 1);
assert_eq!(entities[0].text, "Google");
// "Google" starts at char 9, ends at char 15
assert_eq!(entities[0].start(), 9);
assert_eq!(entities[0].end(), 15);
}
#[test]
fn decode_entities_all_o_yields_nothing() {
let hmm = tiny_hmm();
let text = "the quick fox";
let words: Vec<&str> = text.split_whitespace().collect();
let o = hmm.state_to_idx["O"];
let labels = vec![o, o, o];
let entities = hmm.decode_entities(text, &words, &labels);
assert!(entities.is_empty());
}
// ── calculate_token_positions ───────────────────────────────────
#[test]
fn token_positions_simple() {
let text = "hello world";
let tokens = vec!["hello", "world"];
let pos = HmmNER::calculate_token_positions(text, &tokens);
assert_eq!(pos, vec![(0, 5), (6, 11)]);
}
#[test]
fn token_positions_extra_whitespace() {
let text = "hello world";
let tokens = vec!["hello", "world"];
let pos = HmmNER::calculate_token_positions(text, &tokens);
assert_eq!(pos[0], (0, 5));
assert_eq!(pos[1], (8, 13));
}
// ── init_transitions ────────────────────────────────────────────
#[test]
fn transitions_rows_sum_to_one() {
let hmm = tiny_hmm();
for (i, row) in hmm.transitions.iter().enumerate() {
let sum: f64 = row.iter().sum();
assert!(
(sum - 1.0).abs() < 1e-9,
"row {} ({}) sums to {sum}, not 1.0",
i,
hmm.states[i]
);
}
}
#[test]
fn transitions_i_tag_cross_type_near_zero() {
let hmm = tiny_hmm();
// I-PER following B-ORG should be near-zero (BIO constraint violation)
let b_org = hmm.state_to_idx["B-ORG"];
let i_per = hmm.state_to_idx["I-PER"];
assert!(
hmm.transitions[b_org][i_per] < 0.01,
"B-ORG -> I-PER = {}, should be near-zero",
hmm.transitions[b_org][i_per]
);
}
// ── train ───────────────────────────────────────────────────────
#[test]
fn train_updates_emission_for_seen_word() {
let mut hmm = tiny_hmm();
let sentences: Vec<(&[&str], &[&str])> =
vec![(&["Acme", "sells", "widgets"][..], &["B-ORG", "O", "O"][..])];
hmm.train(&sentences);
let b_org = hmm.state_to_idx["B-ORG"];
// After training, "acme" (lowercased) should have an explicit emission for B-ORG
let p = hmm.emissions.get(&(b_org, "acme".to_string()));
assert!(p.is_some(), "training should insert emission for 'acme'");
assert!(*p.unwrap() > 0.0);
}
#[test]
fn train_empty_sentences_smooths_to_uniform() {
// Training with zero data applies smoothing to all counts,
// which produces a uniform initial distribution (smoothing / (n * smoothing)).
let mut hmm = tiny_hmm();
let sentences: Vec<(&[&str], &[&str])> = vec![];
hmm.train(&sentences);
let n = hmm.states.len();
let expected = 1.0 / n as f64;
for (i, &p) in hmm.initial.iter().enumerate() {
assert!(
(p - expected).abs() < 1e-9,
"state {} initial = {p}, expected uniform {expected}",
hmm.states[i]
);
}
}
// ── initial probs ───────────────────────────────────────────────
#[test]
fn initial_probs_sum_to_one() {
let hmm = tiny_hmm();
let sum: f64 = hmm.initial.iter().sum();
assert!(
(sum - 1.0).abs() < 1e-9,
"initial probs sum to {sum}, not 1.0"
);
}
#[test]
fn initial_i_tags_near_zero() {
let hmm = tiny_hmm();
// I-* tags should have near-zero initial probability (can't start a sequence with I-)
for (i, state) in hmm.states.iter().enumerate() {
if state.starts_with("I-") {
assert!(
hmm.initial[i] < 0.01,
"initial P({state}) = {}, should be near-zero",
hmm.initial[i]
);
}
}
}
}