Update README.md
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ language:
|
|
4 |
- en
|
5 |
inference: false
|
6 |
datasets:
|
7 |
-
-
|
8 |
---
|
9 |
|
10 |
**Owner:** Scalytics, Inc.
|
@@ -18,13 +18,12 @@ Please notice that once you load up the smartmeter data, there are inputs create
|
|
18 |
time inputs, giving the model the ability to keep track of the daytime of each instance. Finally, the inputs are merged into an input df, standardized, and differenced.
|
19 |
After that, some functions are used to give the user the ability to use time windows from the data. Based on these, the model generates forecasts.
|
20 |
|
21 |
-
![Model](https://github.com/
|
22 |
|
23 |
The first models created are a simple baseline model, used for evaluating the performance of the later on built LSTM model. The baseline model simply shifts the values by t=1. Hence,
|
24 |
there is no t=0 and each timestamp uses the value from t-1.
|
25 |
-
Finally, there's the 2-layer plain vanilla LSTM. After 11 epochs, I reached a loss of 10.86
|
26 |
-
for which this seems appropriate.
|
27 |
|
28 |
-
![
|
29 |
|
30 |
***Happy Hacking!***
|
|
|
4 |
- en
|
5 |
inference: false
|
6 |
datasets:
|
7 |
+
- scalytics/smartmeterdata
|
8 |
---
|
9 |
|
10 |
**Owner:** Scalytics, Inc.
|
|
|
18 |
time inputs, giving the model the ability to keep track of the daytime of each instance. Finally, the inputs are merged into an input df, standardized, and differenced.
|
19 |
After that, some functions are used to give the user the ability to use time windows from the data. Based on these, the model generates forecasts.
|
20 |
|
21 |
+
![Model](https://github.com/databloom-ai/LLM-LSTM/blob/main/LSTEnergy/model.png?raw=true)
|
22 |
|
23 |
The first models created are a simple baseline model, used for evaluating the performance of the later on built LSTM model. The baseline model simply shifts the values by t=1. Hence,
|
24 |
there is no t=0 and each timestamp uses the value from t-1.
|
25 |
+
Finally, there's the 2-layer plain vanilla LSTM. After 11 epochs, I reached a loss of 10.86. The main idea here is to build a basic forecasting model for which this seems appropriate.
|
|
|
26 |
|
27 |
+
![LTSM](https://github.com/databloom-ai/LLM-LSTM/blob/main/LSTEnergy/lstm.png?raw=true)
|
28 |
|
29 |
***Happy Hacking!***
|