mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 18:28:24 +00:00
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "candle-examples"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
description = "Examples for the candle ML framework."
|
|
repository = "https://github.com/LaurentMazare/candle"
|
|
keywords = ["blas", "tensor", "machine-learning"]
|
|
categories = ["science"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
candle = { path = "../candle-core" }
|
|
candle-nn = { path = "../candle-nn" }
|
|
candle-transformers = { path = "../candle-transformers" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
intel-mkl-src = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
candle-hub = { path = "../candle-hub" }
|
|
clap = { workspace = true }
|
|
rand = { workspace = true }
|
|
tokenizers = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-chrome = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
wav = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["candle/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
|
|
mkl = ["dep:intel-mkl-src", "candle/mkl", "candle-nn/mkl", "candle-transformers/mkl"]
|