-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (81 loc) · 2.37 KB
/
Cargo.toml
File metadata and controls
102 lines (81 loc) · 2.37 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "rust-lstm"
version = "0.8.0"
authors = ["Alex Kholodniak <alexandrkholodniak@gmail.com>"]
edition = "2021"
rust-version = "1.70"
description = "A complete LSTM neural network library with training capabilities, multiple optimizers, and peephole variants."
license = "MIT"
repository = "https://github.com/SyntaxSpirits/rust-lstm"
homepage = "https://github.com/SyntaxSpirits/rust-lstm"
documentation = "https://docs.rs/rust-lstm"
keywords = ["lstm", "neural-network", "machine-learning", "deep-learning", "rnn"]
categories = ["algorithms", "science"]
[dependencies]
ndarray = "0.15"
ndarray-rand = "0.14"
rand = { version = "0.8", features = ["std"] }
rand_distr = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.0"
[[example]]
name = "training_example"
path = "examples/training_example.rs"
[[example]]
name = "dropout_example"
path = "examples/dropout_example.rs"
[[example]]
name = "stock_prediction"
path = "examples/stock_prediction.rs"
[[example]]
name = "weather_prediction"
path = "examples/weather_prediction.rs"
[[example]]
name = "text_generation_advanced"
path = "examples/text_generation_advanced.rs"
[[example]]
name = "real_data_example"
path = "examples/real_data_example.rs"
[[example]]
name = "model_inspection"
path = "examples/model_inspection.rs"
[[example]]
name = "bilstm_example"
path = "examples/bilstm_example.rs"
[[example]]
name = "text_classification_bilstm"
path = "examples/text_classification_bilstm.rs"
[[example]]
name = "learning_rate_scheduling"
path = "examples/learning_rate_scheduling.rs"
[[example]]
name = "advanced_lr_scheduling"
path = "examples/advanced_lr_scheduling.rs"
[[example]]
name = "gru_example"
path = "examples/gru_example.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "time_series_prediction"
path = "examples/time_series_prediction.rs"
[[example]]
name = "multi_layer_lstm"
path = "examples/multi_layer_lstm.rs"
[[example]]
name = "batch_processing_example"
path = "examples/batch_processing_example.rs"
[[example]]
name = "early_stopping_example"
path = "examples/early_stopping_example.rs"
[[example]]
name = "linear_layer_example"
path = "examples/linear_layer_example.rs"
[[example]]
name = "text_utils_example"
path = "examples/text_utils_example.rs"