-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 724 Bytes
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
[package]
name = "burn-rl-example"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
pyo3 = { version = "0.21", features = ["auto-initialize"] }
numpy = "0.21"
ndarray = "0.16"
rand = "0.8"
anyhow = "1.0"
serde = "1.0"
serde_json = "1.0"
burn = { version = "0.14", features = ["tch", "train", "openblas"] }
hashbrown = { version = "0.14", features = ["serde"] }
rmp-serde = "1.3.0"
clap = { version = "4.5", features = ["derive"] }
tch = {version = "0.15", features = ["download-libtorch"]}
chrono = "0.4"
tempfile = "3.12"
zstd = "0.13"
num-traits = "0.2"
rand_distr = "0.4"
itertools = "0.13"
rocksdb = { version = "0.22.0", features = ["zstd"] }
parking_lot = "0.12.3"
[dev-dependencies]
approx = "0.5"