- Add compile-and-deploy, train-dqn/ppo/supervised WorkflowTemplates - Add Argo Events (EventSource, Sensor, Service) for webhook triggers - Add NetworkPolicy for compile-and-deploy pods (MinIO/DNS/API egress) - Add convenience scripts: argo-compile-deploy.sh, argo-train.sh - Drop cuDNN feature flags from all 9 ML crates (zero conv ops in codebase) - Switch training runtime base to nvidia/cuda:12.9.1-runtime (saves ~800MB) - Delete unused selective_scan.cu (16KB, zero Rust callers) - Fix GPU hotpath violations in ml-core (NVTX, gradient utils, capabilities) - Fix clippy warnings in ml-dqn (VarMap backticks, const fn) - Add DQN GPU smoketest, backtest evaluator signal adapter fixes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
929 B
TOML
31 lines
929 B
TOML
[package]
|
|
name = "ml-explainability"
|
|
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 = "Model explainability (integrated gradients) for Foxhunt ML"
|
|
|
|
[features]
|
|
default = ["cuda"]
|
|
cuda = ["candle-core/cuda", "candle-nn/cuda"]
|
|
|
|
[dependencies]
|
|
ml-core = { path = "../ml-core", default-features = false }
|
|
candle-core = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
|
|
candle-nn = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
|
|
|
|
[dev-dependencies]
|
|
candle-core = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
|
|
candle-nn = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
|
|
|
|
[lints]
|
|
workspace = true
|