-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.09 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
[package]
name = "nanogptrs"
version = "0.1.0"
edition = "2021"
authors = ["Sebastien Soudan <[email protected]>"]
publish = false
description = "A simple language model using the tch-rs library"
repository = "https://github.com/ssoudan/nanogptrs"
license = "MIT/Apache-2.0"
keywords = ["pytorch", "deep-learning", "machine-learning", "language-model"]
categories = ["science"]
readme = "README.md"
[features]
default = []
tch_download = ["tch/download-libtorch"]
[dependencies]
tch = { version = "0.16.0", default-features = false, features = [] }
rand = "0.8.5"
rand_chacha = "0.3.1"
indicatif = { version = "0.17.9", features = ["improved_unicode"] }
tokenizers = { version = "*" }
clap = { version = "4.5.23", features = ["derive"] }
tensorboard-rs = "0.5.9"
chrono = { version = "0.4.39", default-features = false, features = ["clock"] }
itertools = "0.13.0"
rayon = "1.10.0"
[dev-dependencies]
rand_chacha = "0.3.1"
serial_test = "*"
[profile.release]
opt-level = 3
lto = true
debug = false
debug-assertions = false
codegen-units = 1
panic = "abort"
overflow-checks = true
incremental = false