Shourya Bose commited on
Commit
881bc20
1 Parent(s): cbff475

update readme

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -1,3 +1,20 @@
1
  ---
2
  license: cc
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc
3
  ---
4
+
5
+ ## About
6
+
7
+ This repository provides model weights to run load forecasting models trained on ComStock datasets. The companion dataset repository is [this](https://huggingface.co/datasets/APPFL/Illinois_load_datasets). The model definitions are present in the `models` directory. The corresponding trained model weights are present in the `weights` directory. The corresponding model keyword arguments (as a function of a provided `lookback` and `lookahead`) can be imported from the file `model_kwargs.py`.
8
+
9
+ Note that `lookback` is denoted by `L` and `lookahead` by `T` in the weights directory. We provide weights for the following `(L,T)` pairs: `(96,4)`, `(96,48)`, and `(96,96)`.
10
+
11
+ ## Data
12
+
13
+ When using the companion [dataset](https://huggingface.co/datasets/APPFL/Illinois_load_datasets), the following points must be noted (see the dataset for more information on configuring the data loaders):
14
+
15
+ - All models accept normalized inputs and produce normalized outputs, i.e. set `normalize = True` when generating the datasets.
16
+ - For Transformer, Autoformer, Informer, and TimesNet set `transformer = True`, while for LSTM and LSTNet, set `transformer = False`.
17
+
18
+ ## Credits
19
+
20
+ Some model definitions have been adapted from the code provided in the [TSLib Library](https://github.com/thuml/Time-Series-Library).