2pk03 commited on
Commit
ed3106e
1 Parent(s): 37735b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -17,13 +17,13 @@ Please notice that once you load up the smartmeter data, there are inputs create
17
  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.
18
  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.
19
 
20
- ![Model](https://github.com/databloom-ai/LLM-LTSM/blob/main/LSTEnergy/model.png?raw=true)
21
 
22
  The first models created are a simple baseline model, used for evaluating the performance of the later on built LTSM model. The baseline model simply shifts the values by t=1. Hence,
23
  there is no t=0 and each timestamp uses the value from t-1.
24
  Finally, there's the 2-layer plain vanilla LSTM. After 11 epochs, I reached a loss of 10.86 which is rather mediocre. However, the main idea here is to build a basic forecasting model
25
  for which this seems appropriate.
26
 
27
- ![LSTM](https://github.com/databloom-ai/LLM-LTSM/blob/main/LSTEnergy/LTSM.png?raw=true)
28
 
29
  ***Happy Hacking!***
 
17
  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.
18
  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.
19
 
20
+ ![Model](https://github.com/databloom-ai/LLM-LSTM/blob/main/LSTEnergy/model.png?raw=true)
21
 
22
  The first models created are a simple baseline model, used for evaluating the performance of the later on built LTSM model. The baseline model simply shifts the values by t=1. Hence,
23
  there is no t=0 and each timestamp uses the value from t-1.
24
  Finally, there's the 2-layer plain vanilla LSTM. After 11 epochs, I reached a loss of 10.86 which is rather mediocre. However, the main idea here is to build a basic forecasting model
25
  for which this seems appropriate.
26
 
27
+ ![LSTM](https://github.com/databloom-ai/LLM-LSTM/blob/main/LSTEnergy/lstm.png?raw=true)
28
 
29
  ***Happy Hacking!***