-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
46 lines (43 loc) · 1.38 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "llms-from-scratch-rs"
description = "Rust (candle) code for Build a LLM From Scratch by Sebastian Raschka"
version = "0.1.4"
edition = "2021"
repository = "https://github.com/nerdai/llms-from-scratch-rs"
authors = ["Val Andrei Fajardo <[email protected]>"]
keywords = ["machine-learning", "llms", "gpt"]
categories = ["science"]
license = "MIT"
exclude = [
"data/*",
]
[dependencies]
anyhow = "1.0.98"
bytes = "1.10.1"
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
candle-datasets = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.7.2" }
clap = { version = "4.5.37", features = ["derive"] }
comfy-table = "7.1.4"
fancy-regex = "0.14.0"
hf-hub = "0.4.2"
itertools = "0.14.0"
lexical-core = "1.0.5"
ndarray = "0.16.1"
phf = { version = "0.11.3", features = ["macros"] }
plotly = "0.12.1"
polars = { version = "0.46.0", features = ["csv", "dtype-struct", "lazy", "parquet", "rows"] }
rand = "0.9.1"
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
rstest = "0.25.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_with = "3.12.0"
sysinfo = "0.34.2"
tempfile = "3.19.1"
tiktoken-rs = "0.6.0"
tokenizers = "0.21.1"
tqdm = "0.7.0"
zip = "2.6.1"
[features]
cuda = ["candle-core/cuda", "candle-nn/cuda"]