Files
2025-01-16 21:06:51 -05:00

17 lines
479 B
TOML

[package]
name = "neural-networks-101"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.40"
csv = "1.1.6"
clap = { version = "4.5.1", features = ["derive"] }
rand = "0.8.5"
candle-core = { git = "https://github.com/huggingface/candle.git", tag = "0.6.0", features = [
"cuda",
] }
candle-nn = { git = "https://github.com/huggingface/candle.git", tag = "0.6.0" }