This commit is contained in:
wassname
2022-07-16 15:41:36 +08:00
parent 47ea8722ff
commit e0931585df
12 changed files with 1626 additions and 6 deletions
+1 -1
View File
@@ -111,4 +111,4 @@ if __name__ == "__main__":
)
args = parser.parse_args()
main(args)
main(args)
+20
View File
@@ -0,0 +1,20 @@
To source the data first walk through the `make_wind_dataset` notebook.
To generate forecasts for a station then run
```{bash}
python GPGenerator.py
--kernel={volt, sm, matern} ## kernel choice
--stn_idx=0 ## station index in the dataset
--mean={ewma, constant} ## mean choice
--ntrain=400 ## training window
--n_test_times=100 ## number of test time points
```
experiments/stocks/LSTMGenerator.py
experiments/stocks/GenerateMultiMeanPreds.py
experiments/stocks/ForecastGenerator.py
+1 -1
View File
@@ -12,4 +12,4 @@ python GPGenerator.py
--mean={ewma, constant} ## mean choice
--ntrain=400 ## training window
--n_test_times=100 ## number of test time points
```
```