You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+129-6Lines changed: 129 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,17 @@
1
1
# Rust-LSTM
2
2
3
-
A simple LSTM (Long Short-Term Memory) neural network library implemented in Rust. This library provides basic functionalities to createand train LSTM networks.
3
+
A comprehensive LSTM (Long Short-Term Memory) neural network library implemented in Rust. This library provides complete functionalities to create, train, and use LSTM networks for various sequence modeling tasks.
4
4
5
5
## Features
6
6
7
-
- LSTM cell implementation
8
-
- Multi-layer LSTM network
9
-
- Random initialization of weights and biases
10
-
- Forward pass through the network
7
+
-**LSTM cell implementation** with forward and backward propagation
8
+
-**Peephole LSTM variant** for enhanced performance
9
+
-**Multi-layer LSTM networks** with configurable architecture
10
+
-**Complete training system** with backpropagation through time (BPTT)
11
+
-**Multiple optimizers**: SGD, Adam, RMSprop
12
+
-**Loss functions**: MSE, MAE, Cross-entropy with softmax
0 commit comments