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
//! NER backend implementations.
//!
//! Each backend implements the `Model` trait for consistent usage.
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────┐
//! │ Layer 3: ML Backends (feature-gated) │
//! │ │
//! │ Zero-Shot NER (any entity type): │
//! │ - GLiNER: Bi-encoder span classification │
//! │ - NuNER: Token classification (arbitrary length) │
//! │ │
//! │ Complex Structures (nested/discontinuous): │
//! │ - W2NER: Word-word relation grids │
//! │ │
//! │ Traditional (fixed types): │
//! │ - BertNEROnnx: Sequence labeling │
//! ├─────────────────────────────────────────────────────┤
//! │ Layer 2: HeuristicNER (zero deps) │
//! │ Person/Org/Location via heuristics │
//! ├─────────────────────────────────────────────────────┤
//! │ Layer 1: RegexNER (zero deps) │
//! │ Date/Time/Money/Email/URL/Phone │
//! └─────────────────────────────────────────────────────┘
//! ```
//!
//! # Backend Comparison
//!
//! | Backend | Feature | Zero-Shot | Relations | Notes |
//! |---------|---------|-----------|-----------|-------|
//! | `StackedNER` | - | No | No | Composable with any backend |
//! | `EnsembleNER` | - | No | No | Weighted voting across backends |
//! | `RegexNER` | - | No | No | Structured entities only |
//! | `HeuristicNER` | - | No | No | Heuristic baseline |
//! | `CrfNER` | - | No | No | CRF statistical baseline |
//! | `HmmNER` | - | No | No | HMM statistical baseline |
//! | `LexiconNER` | - | No | No | Dictionary lookup |
//! | `GLiNEROnnx` | `onnx` | Yes | No | Span-based zero-shot |
//! | `GLiNERMultitaskOnnx` | `onnx` | Yes | Yes | Multi-task (NER + RE) |
//! | `NuNER` | `onnx` | Yes | No | Token-based zero-shot |
//! | `W2NER` | `onnx` | No | No | Grid-based, nested entities |
//! | `BertNEROnnx` | `onnx` | No | No | Traditional fixed-label NER |
//! | `TPLinker` | `onnx` | No | Yes | Handshaking matrix RE |
//! | `UniversalNER` | `llm` | Yes | No | LLM-based extraction |
//! | `CandleNER` | `candle` | No | No | Pure-Rust inference |
//! | `GLiNERCandle` | `candle` | Yes | No | Pure-Rust GLiNER |
//! | `HeuristicCrfNER` | - | No | No | CRF with heuristic emissions |
//!
//! # When to Use What
//!
//! - **Default choice**: `StackedNER::default()` - cascading: ML first (if available), then heuristic + pattern
//! - **Hybrid approach**: `StackedNER` with ML backends - combine ML accuracy with pattern speed
//! - **Custom types**: `GLiNER` or `NuNER` - zero-shot, any entity type
//! - **Nested entities**: `W2NER` - handles overlapping spans
//! - **Structured data**: `RegexNER` - dates, emails, money
//!
//! # Backend Combination Design Space
//!
//! Two approaches for combining multiple backends:
//!
//! | Combiner | Execution | Conflict Resolution | Best For |
//! |----------|-----------|---------------------|----------|
//! | [`StackedNER`] | Sequential (cascade) | Priority/LongestSpan/HighestConf | Production, latency |
//! | [`EnsembleNER`] | Parallel (all) | Weighted voting + agreement | Maximum accuracy |
//!
//! **StackedNER** runs backends in layer order. Earlier layers claim spans first.
//! Good for: fast execution, structured patterns + ML fill-in.
//!
//! **EnsembleNER** runs ALL backends, groups overlapping spans into conflict clusters,
//! and resolves via weighted voting with type-conditioned weights and agreement bonuses.
//! Good for: maximum accuracy when latency allows.
//!
//! Both accept any `Model` implementation - they're fully composable with ML backends.
//!
//! # Quick Start
//!
//! Zero-dependency default (Pattern + Heuristic):
//!
//! ```rust
//! use anno::{Model, StackedNER};
//!
//! let ner = StackedNER::default();
//! let entities = ner.extract_entities("Dr. Smith charges $100/hr", None).unwrap();
//! ```
//!
//! Custom stack with pattern + heuristic:
//!
//! ```rust
//! use anno::{Model, RegexNER, HeuristicNER, StackedNER};
//! use anno::backends::stacked::ConflictStrategy;
//!
//! let ner = StackedNER::builder()
//! .layer(RegexNER::new())
//! .layer(HeuristicNER::new())
//! .strategy(ConflictStrategy::LongestSpan)
//! .build();
//! ```
//!
//! **StackedNER is fully composable** - you can combine ML backends with pattern/heuristic layers:
//!
//! ```rust,no_run
//! #[cfg(feature = "onnx")]
//! {
//! use anno::{Model, StackedNER, GLiNEROnnx, RegexNER, HeuristicNER};
//! use anno::backends::stacked::ConflictStrategy;
//!
//! // ML-first: ML runs first, then patterns fill gaps
//! let ner = StackedNER::with_ml_first(
//! Box::new(GLiNEROnnx::new("onnx-community/gliner_small-v2.1").unwrap())
//! );
//!
//! // ML-fallback: patterns/heuristics first, ML as fallback
//! let ner = StackedNER::with_ml_fallback(
//! Box::new(GLiNEROnnx::new("onnx-community/gliner_small-v2.1").unwrap())
//! );
//!
//! // Custom stack: any combination of backends
//! let ner = StackedNER::builder()
//! .layer(RegexNER::new()) // High-precision structured entities
//! .layer_boxed(Box::new(GLiNEROnnx::new("onnx-community/gliner_small-v2.1").unwrap())) // ML layer
//! .layer(HeuristicNER::new()) // Quick named entities
//! .strategy(ConflictStrategy::HighestConf) // Resolve conflicts by confidence
//! .build();
//! }
//! ```
/// Macros for generating feature-gated backend stubs.
pub
/// Shared HuggingFace model loading and ONNX session construction utilities.
pub
/// Coreference resolution backends (trait, neural, heuristic).
// Always available (zero deps beyond std)
/// CRF sequence labeling with heuristic emission features.
///
/// Real CRF layer (Viterbi + transition matrix) with gazetteer/word-shape
/// emission features. Renamed from `bilstm_crf` for honest naming.
pub
/// Ensemble NER - weighted voting across multiple backends.
///
/// Unlike `StackedNER` (priority-based layers), `EnsembleNER` collects
/// candidates from ALL backends and resolves conflicts via weighted voting
/// with agreement bonuses.
/// Hidden Markov Model NER - classical statistical approach.
///
/// Implements HMM-based sequence labeling, the dominant approach from the 1990s
/// before CRFs. Useful as a baseline and for understanding NER history.
/// Chunked extraction and overlap deduplication for long text.
/// Map a backend name (stable ID used in stacked/ensemble compositions) to an
/// [`ExtractionMethod`](anno_core::ExtractionMethod).
///
/// Shared by `StackedNER` and `EnsembleNER` so the mapping stays consistent.
pub
// =============================================================================
// Tests for shared utilities
// =============================================================================
// Advanced backends
/// GLiREL: Zero-shot relation extraction via ONNX.
///
/// Uses a DeBERTa-v3 encoder with relation scoring head from the GLiREL family.
/// Export models with `scripts/export_glirel_onnx.py`.
// LLM client abstraction (config, providers, mock)
pub
// LLM-based NER prompting (CodeNER-style)
pub
// GLiNER via ONNX (uses same feature as other ONNX models)
// ONNX implementations
// Pure Rust via Candle
// GLiNER multi-task extraction (ONNX or Candle)
// Re-exports (always available)
pub use CrfNER;
pub use EnsembleNER;
pub use HeuristicNER;
pub use HeuristicCrfNER;
pub use LexiconNER;
pub use NuNER;
pub use RegexNER;
pub use ;
pub use TPLinker;
pub use ;
// Advanced backends
pub use GLiNERPoly;
pub use GLiREL;
pub use UniversalNER;
// Re-exports (feature-gated)
pub use GLiNEROnnx;
pub use BertNEROnnx;
pub use CandleNER;
pub use ;
pub use GLiNERCandle;
// GLiNER multi-task model
pub use ;
pub use GLiNERMultitaskOnnx;
pub use GLiNERMultitaskCandle;
// CorefCluster is always available (lives in coref::resolve, not feature-gated).
pub use CorefCluster;
// T5 coreference
pub use ;
// F-coref neural coreference
pub use ;
// Config re-exports (for quantization control)
pub use GLiNERConfig;
pub use BertNERConfig;
// Coreference resolution trait (from anno-core, always available)
pub use CoreferenceResolver;
// Unified coref backend trait
pub use CorefBackend;
// Classical HMM NER (zero deps)
pub use ;
// Chunking and overlap deduplication
pub use ;
// Simple rule-based coreference resolvers.
pub use ;