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>
23 lines
673 B
Rust
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;
|