Files
foxhunt/crates/ml-supervised/Cargo.toml
jgrusewski 3db7f4828b refactor(ml): extract 8 supervised models into ml-supervised crate (task 8)
Move TFT, Mamba-2, Liquid, TGGN, TLOB, KAN, xLSTM, and Diffusion model
implementations to ml-supervised. Bridge files (UnifiedTrainable adapters,
Checkpointable impls) stay in ml. Delete AsyncDataLoader (replaced by
StreamingDbnLoader + simple .chunks() batching). Remove empty ml-infra
scaffold — the remaining ml modules are too tightly coupled for clean
extraction, so ml stays as the orchestration facade.

- ml-supervised: 234 tests, 0 failures
- ml: 1687 tests, 0 failures
- Workspace: 0 compilation errors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 15:16:08 +01:00

71 lines
1.7 KiB
TOML

[package]
name = "ml-supervised"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
publish.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Supervised models (TFT, Mamba, Liquid, TGGN, TLOB, KAN, xLSTM, Diffusion)"
[features]
default = ["cuda"]
cuda = ["candle-core/cuda", "candle-core/cudnn", "candle-nn/cuda", "candle-nn/cudnn"]
[dependencies]
ml-core.workspace = true
common.workspace = true
config.workspace = true
data.workspace = true
# Async
tokio.workspace = true
# ML frameworks
candle-core = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
candle-nn = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
# Serialization
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
# Core utilities
thiserror.workspace = true
anyhow.workspace = true
tracing.workspace = true
rand.workspace = true
uuid.workspace = true
async-trait.workspace = true
# Numerics
ndarray = { workspace = true, features = ["rayon"] }
nalgebra = { version = "0.33", features = ["serde-serialize"] }
# Graph support (TGGN)
petgraph = { version = "0.6", features = ["serde"] }
# Caching (TFT)
lru.workspace = true
# System
libc = "0.2"
num_cpus = "1.16"
# Concurrency
rayon.workspace = true
dashmap = { workspace = true }
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }
approx.workspace = true
tempfile = "3"
[lints]
workspace = true