bbgame60 commited on
Commit
809d602
·
verified ·
1 Parent(s): 60f933f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +100 -33
README.md CHANGED
@@ -1,54 +1,121 @@
1
  ---
2
- license: mit
3
  task_categories:
4
- - time-series-forecasting
5
  tags:
6
- - time-series
7
- - forecasting
8
- - ts-arena
9
- - long-horizon
10
  size_categories:
11
- - 10K<n<100K
 
12
  ---
13
 
14
- # Electricity Dataset
15
 
16
- Part of the TS Arena benchmarking suite for time-series foundation models.
17
 
18
- ## Description
19
 
20
- 321 customers electricity consumption (2012-2014)
 
 
 
21
 
22
- ## Statistics
23
 
24
- - **Total samples**: 26304
25
- - **Features**: 321
26
- - **Train samples**: 18412
27
- - **Validation samples**: 2631
28
- - **Test samples**: 5261
29
- - **Frequency**: 1 hour
30
 
31
- ## Preprocessing
32
 
33
- - Standard normalization (zero mean, unit variance)
34
- - Scaler fitted on training data only
35
- - Train/Val/Test split: 70%/10%/20%
36
 
37
- ## Usage
38
 
39
- ```python
40
- from datasets import load_dataset
41
 
42
- # Load a specific split
43
- train = load_dataset("ts-arena/electricity", split="train")
44
- val = load_dataset("ts-arena/electricity", split="validation")
45
- test = load_dataset("ts-arena/electricity", split="test")
 
 
 
 
 
 
 
 
46
  ```
47
 
48
- ## Source
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
- [Autoformer Dataset Collection](https://github.com/thuml/Autoformer)
51
 
52
- ## License
53
 
54
- MIT
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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*