2pk03 commited on
Commit
b94d372
1 Parent(s): 44928eb

updated model card

Browse files
Files changed (1) hide show
  1. README.md +14 -6
README.md CHANGED
@@ -1,14 +1,22 @@
1
  ---
2
- license: cc-by-nc-4.0
 
 
 
 
 
 
3
  ---
4
- ### AI Energy Forecast using LTSM
5
 
6
- It basically takes some smartmeter data (5 cols, > 12mil. instances, cols: id, device_name, property, value, timestamp) and creates a custom forecast based on selected window.
7
- The file is available in .py and .ipynb format, so you can choose according to your preferences.
 
 
 
8
 
9
  Please notice that once you load up the smartmeter data, there are inputs created on the timestamp col like wd_input (the weekday of the timestamp), as well as a cos(inus) and sin(us)
10
- time inputs, giving the model the ability to keep track of the daytime of each instance. Finally, the inputs are merged to an input df, standardized and differenced.
11
- 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.
12
 
13
  ![Model](https://github.com/databloom-ai/LLM-LTSM/blob/main/energy-forcast/model.png?raw=true)
14
 
 
1
  ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ library_name: LTSM
6
+ inference: false
7
+ datasets:
8
+ - databloom/smartmeterdata
9
  ---
 
10
 
11
+ **Owner:** DataBloom AI, Inc.
12
+
13
+ ### Model Overview ###
14
+ LSTEnergy [last energy] is a Long-Term-Short-Memory model to predict energy consumption forecasts based on historical data. It basically takes
15
+ some smartmeter data (5 cols, > 12mil. instances, cols: id, device_name, property, value, timestamp) and creates a custom forecast based on selected window.
16
 
17
  Please notice that once you load up the smartmeter data, there are inputs created on the timestamp col like wd_input (the weekday of the timestamp), as well as a cos(inus) and sin(us)
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-LTSM/blob/main/energy-forcast/model.png?raw=true)
22