converge_analytics/lib.rs
1// Copyright 2024-2026 Reflective Labs
2// SPDX-License-Identifier: MIT
3
4//! Analytics and intelligence engine for Converge agents.
5//!
6//! Provides data processing with Polars and ML training/inference with Burn.
7//!
8//! - [`batch`]: Temporal feature extraction and z-score analysis
9//! - [`engine`]: Analytics engine coordinator
10//! - [`model`]: Burn-based ML model definitions
11//! - [`training`]: Training pipeline with dataset, feature engineering, and model registry agents
12//! - [`storage`]: Async I/O helpers (feature `storage`)
13
14pub mod batch;
15pub mod engine;
16pub mod ingest;
17pub mod model;
18#[cfg(feature = "storage")]
19pub mod storage;
20pub mod training;