File size: 2,295 Bytes
d834455
 
 
 
af0ba5b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0ae9cef
 
 
0a17c21
 
 
 
 
af0ba5b
 
 
 
 
0ae9cef
 
0a17c21
 
d834455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
license: openrail
size_categories:
- 1K<n<10K
task_categories:
- time-series-forecasting
dataset_info:
  features:
  - name: start
    dtype: timestamp[us]
  - name: target
    sequence: float64
  - name: feat_static_cat
    sequence: int64
  - name: feat_dynamic_real
    dtype: 'null'
  - name: item_id
    dtype: string
  splits:
  - name: train
    num_bytes: 77588260
    num_examples: 370
  - name: validation
    num_bytes: 77730340
    num_examples: 370
  - name: test
    num_bytes: 77872420
    num_examples: 370
  download_size: 123583004
  dataset_size: 233191020
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: test
    path: data/test-*
---
**Download the Dataset**:
```python
from datasets import load_dataset

dataset = load_dataset("LeoTungAnh/electricity_hourly")
```

**Dataset Card for Electricity Consumption**

This dataset encompasses hourly electricity consumption in kilowatts (kW) across a span of three years (2012-2014), involving 370 individual clients in Portugal.

**Preprocessing information**:
- Grouped by hour (frequency: "1H").
- Applied Standardization as preprocessing technique ("Std").

**Dataset information**:
- Number of time series: 370
- Number of training samples: 26208
- Number of validation samples: 26256 (number_of_training_samples + 48)
- Number of testing samples: 26304 (number_of_validation_samples + 48)

**Dataset format**:
```python
  Dataset({
  
      features: ['start', 'target', 'feat_static_cat', 'feat_dynamic_real', 'item_id'],
      
      num_rows: 370
      
  })
```
**Data format for a sample**:

- 'start': datetime.datetime

- 'target': list of a time series data

- 'feat_static_cat': time series index

- 'feat_dynamic_real': None

- 'item_id': name of time series


**Data example**:
```python
{'start': datetime.datetime(2012, 1, 1, 1, 0),

 'target': [-0.19363673541224083, -0.08851588245610625, -0.19363673541224083, ... -0.5615597207587115,...],
 
 'feat_static_cat': [0],
 
 'feat_dynamic_real': None,
 
 'item_id': 'MT_001'
}
```

**Usage**:
- The dataset can be used by available Transformer, Autoformer, Informer of Huggingface.
- Other algorithms can extract data directly by making use of 'target' feature.