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
//! Axonml HVAC — Domain-Specific HVAC Diagnostic Models
//!
//! Top-level crate module aggregating nine named neural-network models for
//! HVAC fault detection and diagnostic reasoning on top of the AxonML deep
//! learning framework. `apollo` hosts the primary fault classifier, `aquilo`
//! the airflow anomaly detector, `boreas` the cold-side cooling specialist,
//! `colossus` a large transformer diagnostician, `gaia` an environmental
//! context encoder, `naiad` the water-side hydronic specialist, `panoptes`
//! the observability / multi-signal fusion model, `vulcan` the heat-side
//! specialist, and `zephyrus` the temporal predictor / autoencoder.
//! Supporting modules are `data` (the `HvacSensorData`, `HvacLabels`,
//! `PipelineOutput`, and `SyntheticHvacGenerator` types), `panoptes_datagen`
//! (`PanoptesTrainingData` + the `WarrenSimulator` HVAC scenario engine), and
//! `pipeline` which wires the models into the end-to-end `HvacPipeline`. The
//! crate re-exports each model struct alongside these helpers as the public
//! surface. Clippy lints for the cast, doc, naming, and arity families are
//! selectively relaxed at the crate root to accommodate the numeric-heavy
//! training code.
//!
//! # File
//! `crates/axonml-hvac/src/lib.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.
// =============================================================================
// Crate-Level Lints
// =============================================================================
// =============================================================================
// Module Declarations
// =============================================================================
// =============================================================================
// Public Re-exports
// =============================================================================
pub use Apollo;
pub use Aquilo;
pub use Boreas;
pub use Colossus;
pub use ;
pub use Gaia;
pub use Naiad;
pub use Panoptes;
pub use ;
pub use HvacPipeline;
pub use Vulcan;
pub use Zephyrus;