anno 0.8.0

NER, coreference resolution, relation extraction, PII detection, and zero-shot entity types
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.
#[macro_use]
pub(crate) mod macros;

/// Shared HuggingFace model loading and ONNX session construction utilities.
#[cfg(any(feature = "onnx", feature = "candle"))]
pub(crate) mod hf_loader;

/// Coreference resolution backends (trait, neural, heuristic).
pub mod coref;

// 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 mod heuristic_crf;

pub mod catalog;
pub mod crf;
pub mod heuristic;
pub mod inference;
pub mod lexicon;
pub mod nuner;
pub(crate) mod ort_compat;
pub mod regex;
pub mod stacked;
pub mod tplinker;
pub mod w2ner;

/// 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.
pub mod ensemble;

/// 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.
pub mod hmm;

/// Chunked extraction and overlap deduplication for long text.
pub mod chunking;

/// 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(crate) fn method_for_backend_name(name: &str) -> anno_core::ExtractionMethod {
    match name {
        // Stable IDs used by built-in compositions.
        "regex" => anno_core::ExtractionMethod::Pattern,
        "heuristic" | "heuristic-crf" | "crf" | "lexicon" => anno_core::ExtractionMethod::Heuristic,
        // Everything else: treat as neural by default (BERT, GLiNER, NuNER, etc.).
        _ => anno_core::ExtractionMethod::Neural,
    }
}

// =============================================================================
// Tests for shared utilities
// =============================================================================

#[cfg(test)]
mod tests {
    use super::method_for_backend_name;
    use anno_core::ExtractionMethod;

    // -------------------------------------------------------------------------
    // method_for_backend_name: exact stable IDs
    // -------------------------------------------------------------------------

    #[test]
    fn regex_maps_to_pattern() {
        assert_eq!(
            method_for_backend_name("regex"),
            ExtractionMethod::Pattern,
            "\"regex\" must map to Pattern"
        );
    }

    #[test]
    fn heuristic_maps_to_heuristic() {
        assert_eq!(
            method_for_backend_name("heuristic"),
            ExtractionMethod::Heuristic,
            "\"heuristic\" must map to Heuristic"
        );
    }

    // -------------------------------------------------------------------------
    // method_for_backend_name: wildcard / unknown IDs -> Neural
    // -------------------------------------------------------------------------

    #[test]
    fn statistical_ids_map_to_heuristic() {
        // Statistical/classical backends map to Heuristic (closest match --
        // no separate Statistical variant exists).
        let heuristic_names = ["crf", "heuristic-crf", "lexicon"];
        for name in heuristic_names {
            assert_eq!(
                method_for_backend_name(name),
                ExtractionMethod::Heuristic,
                "\"{}\" should map to Heuristic (classical/statistical backend)",
                name
            );
        }
    }

    #[test]
    fn unknown_ids_map_to_neural() {
        // ML backends and unknown strings fall back to Neural.
        let neural_names = [
            "gliner",
            "gliner-candle",
            "GLiNER-ONNX",
            "bert-ner-onnx",
            "bert-onnx",
            "nuner",
            "NuNER",
            "w2ner",
            "llm",
            "custom-backend",
            "",
            "REGEX",     // case-sensitive: must NOT match "regex"
            "Heuristic", // case-sensitive: must NOT match "heuristic"
        ];
        for name in neural_names {
            assert_eq!(
                method_for_backend_name(name),
                ExtractionMethod::Neural,
                "\"{}\" should map to Neural (unknown/wildcard ID)",
                name
            );
        }
    }

    #[test]
    fn ensemble_nested_id_maps_to_neural() {
        // An EnsembleNER's transparent name looks like "ensemble(regex|heuristic)".
        // The composite string is not one of the stable keys, so it must map to
        // Neural — the caller is responsible for extracting inner provenance.
        let name = "ensemble(regex|heuristic)";
        assert_eq!(
            method_for_backend_name(name),
            ExtractionMethod::Neural,
            "composite ensemble ID '{}' should map to Neural",
            name
        );
    }

    #[test]
    fn stacked_id_maps_to_neural() {
        let name = "stacked(regex|heuristic)";
        assert_eq!(
            method_for_backend_name(name),
            ExtractionMethod::Neural,
            "composite stacked ID '{}' should map to Neural",
            name
        );
    }

    // -------------------------------------------------------------------------
    // Stability: the two exact matches remain stable under whitespace
    // -------------------------------------------------------------------------

    #[test]
    fn match_is_exact_no_trimming() {
        // Whitespace-padded variants are NOT trimmed; they should fall through
        // to Neural, confirming the match is exact byte-equality.
        for padded in &[" regex", "regex ", " heuristic", "heuristic\n"] {
            assert_eq!(
                method_for_backend_name(padded),
                ExtractionMethod::Neural,
                "whitespace-padded name '{}' should not match a stable ID",
                padded
            );
        }
    }
}

// Advanced backends
pub mod gliner_poly;
/// 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`.
pub mod glirel;
pub mod universal_ner;

// LLM client abstraction (config, providers, mock)
pub(crate) mod llm_client;

// LLM-based NER prompting (CodeNER-style)
pub(crate) mod llm_prompt;

// GLiNER via ONNX (uses same feature as other ONNX models)

// ONNX implementations
#[cfg(feature = "onnx")]
pub mod gliner_onnx;

#[cfg(feature = "onnx")]
pub mod onnx;

// Pure Rust via Candle
#[cfg(feature = "candle")]
pub mod candle;

#[cfg(feature = "candle")]
pub mod encoder_candle;

#[cfg(feature = "candle")]
pub mod gliner_candle;

// GLiNER multi-task extraction (ONNX or Candle)
#[cfg(any(feature = "onnx", feature = "candle"))]
pub mod gliner_multitask;

// Re-exports (always available)
pub use crf::CrfNER;
pub use ensemble::EnsembleNER;
pub use heuristic::HeuristicNER;
pub use heuristic_crf::HeuristicCrfNER;
pub use lexicon::LexiconNER;
pub use nuner::NuNER;
pub use regex::RegexNER;
pub use stacked::{ConflictStrategy, StackedNER};

pub use tplinker::TPLinker;
pub use w2ner::{W2NERConfig, W2NERRelation, W2NER};

// Advanced backends
pub use gliner_poly::GLiNERPoly;
pub use glirel::GLiREL;
pub use universal_ner::UniversalNER;

// Re-exports (feature-gated)
#[cfg(feature = "onnx")]
pub use gliner_onnx::GLiNEROnnx;

#[cfg(feature = "onnx")]
pub use onnx::BertNEROnnx;

#[cfg(feature = "candle")]
pub use candle::CandleNER;

#[cfg(feature = "candle")]
pub use encoder_candle::{EncoderArchitecture, EncoderConfig};

#[cfg(feature = "candle")]
pub use gliner_candle::GLiNERCandle;

// GLiNER multi-task model
#[cfg(any(feature = "onnx", feature = "candle"))]
pub use gliner_multitask::{
    ClassificationResult, ClassificationTask, EntityTask, ExtractedStructure, ExtractionResult,
    FieldType, GLiNERMultitask, StructureTask, StructureValue, TaskSchema,
};

#[cfg(feature = "onnx")]
pub use gliner_multitask::GLiNERMultitaskOnnx;

#[cfg(feature = "candle")]
pub use gliner_multitask::GLiNERMultitaskCandle;

// CorefCluster is always available (lives in coref::resolve, not feature-gated).
pub use coref::CorefCluster;

// T5 coreference
#[cfg(feature = "onnx")]
pub use coref::t5::{T5Coref, T5CorefConfig};

// F-coref neural coreference
#[cfg(feature = "onnx")]
pub use coref::fcoref::{FCoref, FCorefConfig};

// Config re-exports (for quantization control)
#[cfg(feature = "onnx")]
pub use gliner_onnx::GLiNERConfig;

#[cfg(feature = "onnx")]
pub use onnx::BertNERConfig;

// Coreference resolution trait (from anno-core, always available)
pub use anno_core::CoreferenceResolver;

// Unified coref backend trait
pub use coref::resolve::CorefBackend;

// Classical HMM NER (zero deps)
pub use hmm::{HmmConfig, HmmNER};

// Chunking and overlap deduplication
pub use chunking::{deduplicate_overlapping, ChunkConfig, OverlapStrategy};

// Simple rule-based coreference resolvers.
#[cfg(feature = "analysis")]
pub use coref::simple::{CorefConfig, SimpleCorefResolver};