Files
foxhunt/crates/ml-supervised/src/lib.rs
jgrusewski 7ef92983f9 fix(clippy): apply cargo clippy --fix across workspace
Mechanical auto-fixes: redundant borrows, clone on Copy, or_insert_with,
single-char push_str, get(0) → first(), needless borrow, let_and_return.
150 files, no behavior changes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 11:17:51 +01:00

23 lines
673 B
Rust

//! Supervised ML models for Foxhunt HFT trading
//!
//! Contains 8 model architectures: TFT, Mamba-2, Liquid, TGGN, TLOB, KAN, xLSTM, Diffusion.
//! Each model directory contains the core network, layers, and self-contained training logic.
//! Checkpointable impls live in the `checkpoint` module. `UnifiedTrainable` adapters live in `ml`.
// Re-export shared types from ml-core
pub use ml_core::cuda_compat;
pub use ml_core::mixed_precision;
pub use ml_core::xavier_init;
pub mod tft;
pub mod mamba;
pub mod liquid;
pub mod tgnn;
pub mod tlob;
pub mod kan;
pub mod xlstm;
pub mod diffusion;
// Checkpoint impls (Checkpointable for Mamba2SSM, TGGN)
pub mod checkpoint;