Datasets:
id
stringclasses 2
values | timestamp
listlengths 17.4k
17.4k
| HUFL
listlengths 17.4k
17.4k
| HULL
listlengths 17.4k
17.4k
| MUFL
listlengths 17.4k
17.4k
| MULL
listlengths 17.4k
17.4k
| LUFL
listlengths 17.4k
17.4k
| LULL
listlengths 17.4k
17.4k
| OT
listlengths 17.4k
17.4k
|
---|---|---|---|---|---|---|---|---|
ETTh1
| ["2016-07-01T00:00:00","2016-07-01T01:00:00","2016-07-01T02:00:00","2016-07-01T03:00:00","2016-07-01(...TRUNCATED) | [5.827000141143799,5.692999839782715,5.1570000648498535,5.090000152587892,5.357999801635742,5.625999(...TRUNCATED) | [2.009000062942505,2.075999975204468,1.741000056266785,1.9420000314712524,1.9420000314712524,2.14299(...TRUNCATED) | [1.5989999771118164,1.4919999837875366,1.2790000438690186,1.2790000438690186,1.4919999837875366,1.52(...TRUNCATED) | [0.4620000123977661,0.4259999990463257,0.3549999892711639,0.3910000026226044,0.4620000123977661,0.53(...TRUNCATED) | [4.203000068664552,4.142000198364259,3.776999950408936,3.806999921798706,3.868000030517578,4.0510001(...TRUNCATED) | [1.3400000333786009,1.371000051498413,1.218000054359436,1.2790000438690186,1.2790000438690186,1.3710(...TRUNCATED) | [30.5310001373291,27.78700065612793,27.78700065612793,25.04400062561035,21.947999954223643,21.173999(...TRUNCATED) |
ETTh2
| ["2016-07-01T00:00:00","2016-07-01T01:00:00","2016-07-01T02:00:00","2016-07-01T03:00:00","2016-07-01(...TRUNCATED) | [41.13000106811523,37.52799987792969,37.946998596191406,38.95199966430664,38.11399841308594,36.77399(...TRUNCATED) | [12.480999946594238,10.13599967956543,11.309000015258787,11.895000457763672,11.47599983215332,10.973(...TRUNCATED) | [36.5359992980957,33.93600082397461,35.33000183105469,35.54399871826172,35.40999984741211,34.9280014(...TRUNCATED) | [9.354999542236328,7.532000064849853,9.006999969482422,9.435999870300291,9.623000144958496,9.2480001(...TRUNCATED) | [4.423999786376953,4.434999942779541,2.0999999046325684,3.380000114440918,2.0360000133514404,2.03600(...TRUNCATED) | [1.3109999895095823,1.2150000333786009,0.0,1.2150000333786009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.(...TRUNCATED) | [38.6619987487793,37.124000549316406,36.46500015258789,33.60850143432617,31.850500106811523,30.53199(...TRUNCATED) |
Forecast evaluation datasets
This repository contains time series datasets that can be used for evaluation of univariate & multivariate forecasting models.
The main focus of this repository is on datasets that reflect real-world forecasting scenarios, such as those involving covariates, missing values, and other practical complexities.
The datasets follow a format that is compatible with the fev
package.
Data format and usage
Each dataset satisfies the following schema:
- each dataset entry (=row) represents a single univariate or multivariate time series
- each entry contains
- 1/ a field of type
Sequence(timestamp)
that contains the timestamps of observations - 2/ at least one field of type
Sequence(float)
that can be used as the target time series or dynamic covariates - 3/ a field of type
string
that contains the unique ID of each time series
- 1/ a field of type
- all fields of type
Sequence
have the same length
Datasets can be loaded using the 🤗 datasets
library.
import datasets
ds = datasets.load_dataset("autogluon/fev_datasets", "epf_electricity_de", split="train")
ds.set_format("numpy") # sequences returned as numpy arrays
Example entry in the epf_electricity_de
dataset
>>> ds[0]
{'id': 'DE',
'timestamp': array(['2012-01-09T00:00:00.000000', '2012-01-09T01:00:00.000000',
'2012-01-09T02:00:00.000000', ..., '2017-12-31T21:00:00.000000',
'2017-12-31T22:00:00.000000', '2017-12-31T23:00:00.000000'],
dtype='datetime64[us]'),
'target': array([34.97, 33.43, 32.74, ..., 5.3 , 1.86, -0.92], dtype=float32),
'Ampirion Load Forecast': array([16382. , 15410.5, 15595. , ..., 15715. , 15876. , 15130. ],
dtype=float32),
'PV+Wind Forecast': array([ 3569.5276, 3315.275 , 3107.3076, ..., 29653.008 , 29520.33 ,
29466.408 ], dtype=float32)}
For more details about the dataset format and usage, check out the fev
documentation on GitHub.
Dataset statistics
Disclaimer: These datasets have been converted into a unified format from external sources. Please refer to the original sources for licensing and citation terms. We do not claim any rights to the original data. Unless otherwise specified, the datasets are provided only for research purposes.
Publications using these datasets
- Downloads last month
- 405