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
//! Nexus — Predictive Dual-Pathway Object Detection
//!
//! Top-level module for the Nexus detector. Re-exports `Nexus` (full pipeline),
//! `MultiScaleFusion`, `ObjectMemoryBank`, and `MultiScalePredictiveCoding`.
//! Defines `NexusConfig` (input size, num_classes, GRU memory hidden dimension,
//! proposal/NMS thresholds), `NexusScaleOutput` (per-scale cls logits, bbox
//! predictions, and centerness), and `NexusTrainOutput` (3-scale raw outputs
//! for loss computation). The Nexus architecture combines a dual-pathway
//! backbone, predictive coding surprise gating, attention-gated fusion, and
//! GRU-based object memory for temporal object tracking.
//!
//! # File
//! `crates/axonml-vision/src/models/nexus/mod.rs`
//!
//! # Author
//! Andrew Jewell Sr. — AutomataNexus LLC
//! ORCID: 0009-0005-2158-7060
//!
//! # Updated
//! April 16, 2026 11:15 PM EST
//!
//! # Disclaimer
//! Use at own risk. This software is provided "as is", without warranty of any
//! kind, express or implied. The author and AutomataNexus shall not be held
//! liable for any damages arising from the use of this software.
// =============================================================================
// Sub-Modules and Re-Exports
// =============================================================================
pub use Nexus;
pub use MultiScaleFusion;
pub use ObjectMemoryBank;
pub use MultiScalePredictiveCoding;
use Variable;
// =============================================================================
// Training Output Types
// =============================================================================
/// Per-scale training outputs from Nexus.
/// Training output from Nexus (raw head outputs, no NMS).
// =============================================================================
// Configuration
// =============================================================================
/// Configuration for the Nexus detector.