-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
37 lines (30 loc) · 867 Bytes
/
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
[package]
name = "rurel"
version = "0.6.0"
authors = ["Milan Boers <mail@milanboers.nl>"]
description = "Flexible, reusable reinforcement learning (Q learning) implementation"
documentation = "https://docs.rs/rurel"
homepage = "https://github.com/milanboers/rurel"
repository = "https://github.com/milanboers/rurel"
readme = "README.md"
keywords = ["reinforcement", "q", "learning", "dqn"]
categories = ["science", "algorithms"]
license = "MPL-2.0"
edition = "2021"
[badges]
travis-ci = { repository = "milanboers/rurel", branch = "master" }
[features]
default = []
dqn = ["dfdx"]
[dependencies]
rand = "0.8"
dfdx = { version = "0.11.2", optional = true }
[[example]]
name = "eucdist"
path = "src/examples/eucdist.rs"
[[example]]
name = "weightedcoin"
path = "src/examples/weightedcoin.rs"
[[example]]
name = "eucdist_dqn"
path = "src/examples/eucdist_dqn.rs"