Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,54 +1,121 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
task_categories:
|
| 4 |
-
- time-series-forecasting
|
| 5 |
tags:
|
| 6 |
-
- time-series
|
| 7 |
-
- forecasting
|
| 8 |
-
-
|
| 9 |
-
- long-horizon
|
| 10 |
size_categories:
|
| 11 |
-
-
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
## Description
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
##
|
| 23 |
|
| 24 |
-
|
| 25 |
-
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
|
| 31 |
-
##
|
| 32 |
|
| 33 |
-
-
|
| 34 |
-
-
|
| 35 |
-
-
|
| 36 |
|
| 37 |
-
##
|
| 38 |
|
| 39 |
-
|
| 40 |
-
from datasets import load_dataset
|
| 41 |
|
| 42 |
-
#
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
```
|
| 47 |
|
| 48 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
-
|
| 51 |
|
| 52 |
-
##
|
| 53 |
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: unknown
|
| 3 |
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
tags:
|
| 6 |
+
- time-series
|
| 7 |
+
- forecasting
|
| 8 |
+
- long-horizon
|
|
|
|
| 9 |
size_categories:
|
| 10 |
+
- n<1K
|
| 11 |
+
pretty_name: electricity
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# electricity
|
| 15 |
|
| 16 |
+
Time series dataset: electricity
|
| 17 |
|
| 18 |
+
## Dataset Description
|
| 19 |
|
| 20 |
+
- **Homepage:**
|
| 21 |
+
- **Repository:**
|
| 22 |
+
- **Paper:**
|
| 23 |
+
- **License:** Unknown
|
| 24 |
|
| 25 |
+
## Dataset Summary
|
| 26 |
|
| 27 |
+
| Property | Value |
|
| 28 |
+
|----------|-------|
|
| 29 |
+
| Frequency | 1H |
|
| 30 |
+
| Validation samples | 1 |
|
| 31 |
+
| Train samples | 1 |
|
| 32 |
+
| Test samples | 1 |
|
| 33 |
|
| 34 |
+
## Supported Tasks
|
| 35 |
|
| 36 |
+
- Time series forecasting
|
| 37 |
+
- Anomaly detection
|
| 38 |
+
- Classification (if applicable)
|
| 39 |
|
| 40 |
+
## Languages
|
| 41 |
|
| 42 |
+
N/A (numerical data)
|
|
|
|
| 43 |
|
| 44 |
+
## Dataset Structure
|
| 45 |
+
|
| 46 |
+
### Data Instances
|
| 47 |
+
|
| 48 |
+
```json
|
| 49 |
+
{
|
| 50 |
+
"item_id": "example_series_0",
|
| 51 |
+
"start": "2020-01-01T00:00:00",
|
| 52 |
+
"target": [1.0, 2.0, 3.0, ...],
|
| 53 |
+
"frequency": "1H",
|
| 54 |
+
"metadata": "{...}"
|
| 55 |
+
}
|
| 56 |
```
|
| 57 |
|
| 58 |
+
### Data Fields
|
| 59 |
+
|
| 60 |
+
| Field | Type | Description |
|
| 61 |
+
|-------|------|-------------|
|
| 62 |
+
| item_id | string | Unique identifier for the time series |
|
| 63 |
+
| start | string | ISO 8601 timestamp of the first observation |
|
| 64 |
+
| target | list[float] | Time series values |
|
| 65 |
+
| frequency | string | Pandas frequency string (e.g., '1H', '1D') |
|
| 66 |
+
| feat_dynamic_real | list[list[float]] | Time-varying covariates (optional) |
|
| 67 |
+
| feat_static_cat | list[int] | Static categorical features (optional) |
|
| 68 |
+
| metadata | string | JSON string with normalization params, etc. |
|
| 69 |
+
|
| 70 |
+
### Data Splits
|
| 71 |
+
|
| 72 |
+
| Split | Examples |
|
| 73 |
+
|-------|----------|
|
| 74 |
+
| validation | 1 |
|
| 75 |
+
| train | 1 |
|
| 76 |
+
| test | 1 |
|
| 77 |
+
|
| 78 |
+
## Dataset Creation
|
| 79 |
+
|
| 80 |
+
### Source Data
|
| 81 |
+
|
| 82 |
+
**Download Method:** unknown
|
| 83 |
+
|
| 84 |
+
### Preprocessing
|
| 85 |
+
|
| 86 |
+
1. Data downloaded from original source
|
| 87 |
+
2. Missing values filled using forward-fill method
|
| 88 |
+
3. Standard normalization applied (mean=0, std=1)
|
| 89 |
+
4. Split into train/validation/test sets (70/10/20)
|
| 90 |
+
5. Converted to Parquet format for efficient streaming
|
| 91 |
|
| 92 |
+
## Considerations for Using the Data
|
| 93 |
|
| 94 |
+
### Social Impact
|
| 95 |
|
| 96 |
+
This dataset is intended for research purposes in time series forecasting.
|
| 97 |
+
|
| 98 |
+
### Limitations
|
| 99 |
+
|
| 100 |
+
- Normalization parameters are computed on training data only
|
| 101 |
+
- Missing value handling may introduce artifacts
|
| 102 |
+
- Temporal alignment assumes regular intervals
|
| 103 |
+
|
| 104 |
+
## Additional Information
|
| 105 |
+
|
| 106 |
+
### Citation
|
| 107 |
+
|
| 108 |
+
```bibtex
|
| 109 |
+
@misc{unknown_dataset,
|
| 110 |
+
title = {Unknown Dataset},
|
| 111 |
+
url = {},
|
| 112 |
+
year = {2024},
|
| 113 |
+
}
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
### Contributions
|
| 117 |
+
|
| 118 |
+
This dataset was processed and uploaded as part of the [TS Arena](https://github.com/ts-arena) benchmarking project.
|
| 119 |
+
|
| 120 |
+
---
|
| 121 |
+
*Generated automatically by TS Arena streaming pipeline on 2026-01-03*
|