Hard refactor — no shims, no compat layers. Candle removed from Cargo.toml and all source files in 6 crates: - ml-core: MlDevice enum, checkpoint.rs (safetensors direct), cudarc imports fixed from candle re-export to direct, AdamWConfig lr_decay, cuda_compat gutted. Net -7,341 lines. - ml-ppo: All 16 files rewritten. LSTM→CudaLSTM, VarMap→GpuVarStore, PPOAgent 2306→700 lines, checkpoint→binary format. - ml-ensemble: GPU-resident sigmoid via custom CUDA kernel. - ml-explainability: Integrated gradients via GPU finite-difference kernels. - ml-labeling: Device→MlDevice. - ml-hyperopt: Cargo.toml only. Remaining: ml-dqn (24 files), ml-supervised (4 files), ml crate (104 files). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "ml-hyperopt"
|
|
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 = "ML hyperparameter optimization — PSO, TPE, campaigns, sensitivity analysis"
|
|
|
|
[features]
|
|
default = ["cuda"]
|
|
cuda = ["ml-core/cuda"]
|
|
|
|
[dependencies]
|
|
ml-core = { path = "../ml-core", default-features = false }
|
|
common.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
tracing.workspace = true
|
|
anyhow.workspace = true
|
|
rand.workspace = true
|
|
rand_distr.workspace = true
|
|
ndarray = { workspace = true, features = ["rayon"] }
|
|
rayon.workspace = true
|
|
statrs.workspace = true
|
|
argmin = { version = "0.8", features = ["rayon"] }
|
|
argmin-math = "0.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
rand_chacha = "0.3"
|
|
approx = "0.5"
|
|
|
|
[lints]
|
|
workspace = true
|