mltrev23 commited on
Commit
a307e16
·
verified ·
1 Parent(s): fb8b8b1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -3
README.md CHANGED
@@ -1,3 +1,25 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # LSTM Neural Network for Time Series Prediction
2
+
3
+ LSTM built using the Keras Python package to predict time series steps and sequences. Includes sine wave and stock market data.
4
+
5
+ [Full article write-up for this code](https://www.altumintelligence.com/articles/a/Time-Series-Prediction-Using-LSTM-Deep-Neural-Networks)
6
+
7
+ [Video on the workings and usage of LSTMs and run-through of this code](https://www.youtube.com/watch?v=2np77NOdnwk)
8
+
9
+ ## Requirements
10
+
11
+ Install requirements.txt file to make sure correct versions of libraries are being used.
12
+
13
+ * Python 3.5.x
14
+ * TensorFlow 1.10.0
15
+ * Numpy 1.15.0
16
+ * Keras 2.2.2
17
+ * Matplotlib 2.2.2
18
+
19
+ Output for sine wave sequential prediction:
20
+
21
+ ![Output for sin wave sequential prediction](https://www.altumintelligence.com/assets/time-series-prediction-using-lstm-deep-neural-networks/sinwave_full_seq.png)
22
+
23
+ Output for stock market multi-dimensional multi-sequential predictions:
24
+
25
+ ![Output for stock market multiple sequential predictions](https://www.altumintelligence.com/assets/time-series-prediction-using-lstm-deep-neural-networks/sp500_multi_2d.png)