VGalaxies666 commited on
Commit
7fc437e
·
verified ·
1 Parent(s): fbd9bc9

Rewrite dataset card in English

Browse files
Files changed (1) hide show
  1. README.md +57 -17
README.md CHANGED
@@ -2,36 +2,76 @@
2
  license: other
3
  task_categories:
4
  - time-series-forecasting
 
 
 
 
 
 
 
5
  tags:
6
  - time-series
 
 
 
7
  - tsfile
 
 
 
 
 
 
 
8
  pretty_name: entsoe (TsFile format)
 
 
 
 
 
9
  ---
10
 
11
  # entsoe (TsFile format)
12
 
13
- ## Source and Citation
14
 
15
- - **Original source**: https://data.open-power-system-data.org/time_series/2020-10-06
16
- - **Paper / citation**: [[6]](https://doi.org/10.25832/time_series/2020-10-06)
17
- - **Unified source collection**: [autogluon/fev_datasets](https://huggingface.co/datasets/autogluon/fev_datasets)
18
 
19
- > This dataset was converted from external source data into a unified forecasting format and then into TsFile. Licensing and citation requirements follow the original source. We do not claim ownership of the original data. Unless otherwise stated, the data is intended for research use.
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  ## Dataset Statistics
22
 
23
- | Frequency | Number of series | Median length | Observations | Dynamic columns | Static columns | Files |
24
- |---|---|---|---|---|---|---|
25
  | 15T | 6 | 175,292 | 6,310,512 | 6 | 0 | `15T/15T_1..15T_2.tsfile` (2 shards) |
26
  | 1H | 6 | 43,822 | 1,577,592 | 6 | 0 | `1H/1H.tsfile` |
27
  | 30T | 6 | 87,645 | 3,155,220 | 6 | 0 | `30T/30T.tsfile` |
28
 
 
 
 
 
 
 
 
 
 
29
  ## TsFile Storage Model
30
 
31
- - Each original series (`id`) is stored as one TsFile **device** (TAG dimension).
32
- - Time-varying targets and dynamic covariates are stored as **measurements** (FIELDs).
33
- - `timestamp` is mapped to `Time` as INT64 milliseconds.
34
- - Table names: entsoe_15T, entsoe_1H, entsoe_30T.
35
 
36
  ### Column Schema
37
 
@@ -48,17 +88,17 @@ pretty_name: entsoe (TsFile format)
48
 
49
  ## Conversion Notes
50
 
51
- - Each original row stores one complete series `(id, timestamp[], target and dynamic arrays)`. The converter flattens these nested rows into a long table before writing TsFile.
52
- - Numeric types are inferred from the source columns, for example float32 to FLOAT, float64 to DOUBLE, integers to INT64, and bool to BOOLEAN.
53
- - Time precision: milliseconds (INT64).
54
- - Large tables may be automatically sharded as `<name>_1.tsfile`, `<name>_2.tsfile`, and so on. These shards belong to the same logical table.
55
 
56
  ## Reading Example
57
 
58
  ```python
59
  from tsfile import TsFileReader
60
 
61
- reader = TsFileReader("15T/15T.tsfile")
62
  schemas = reader.get_all_table_schemas()
63
- # Table name: entsoe_15T; see \"Column Schema\" below.
64
  ```
 
2
  license: other
3
  task_categories:
4
  - time-series-forecasting
5
+ task_ids:
6
+ - univariate-time-series-forecasting
7
+ - multivariate-time-series-forecasting
8
+ annotations_creators:
9
+ - no-annotation
10
+ source_datasets:
11
+ - original
12
  tags:
13
  - time-series
14
+ - forecasting
15
+ - benchmark
16
+ - fev
17
  - tsfile
18
+ - apache-tsfile
19
+ - modality:timeseries
20
+ - Time-series
21
+ - format:tsfile
22
+ - arxiv:2509.26468
23
+ size_categories:
24
+ - 100K<n<1M
25
  pretty_name: entsoe (TsFile format)
26
+ configs:
27
+ - config_name: default
28
+ data_files:
29
+ - split: train
30
+ path: "**/*.tsfile"
31
  ---
32
 
33
  # entsoe (TsFile format)
34
 
35
+ This repository contains time-series forecasting data stored in [Apache TsFile](https://tsfile.apache.org/) format.
36
 
37
+ ## Summary
 
 
38
 
39
+ - FEV subset: `entsoe`
40
+ - Unified source collection: [`autogluon/fev_datasets`](https://huggingface.co/datasets/autogluon/fev_datasets)
41
+ - Original source: https://data.open-power-system-data.org/time_series/2020-10-06
42
+ - Paper / citation: [[6]](https://doi.org/10.25832/time_series/2020-10-06)
43
+ - Series: 6
44
+ - Modalities: Time-series
45
+ - TsFile rows (flattened observations): 11,043,324
46
+ - Frequencies: 15T, 1H, 30T
47
+ - TsFile files: 4
48
+ - Time precision: milliseconds (`INT64`).
49
+
50
+ Licensing and citation requirements follow the original source. This repository does not claim ownership of the original data.
51
 
52
  ## Dataset Statistics
53
 
54
+ | Frequency | Series | Median series length | TsFile rows (observations) | Dynamic columns | Static columns | Data files |
55
+ |---|---:|---:|---:|---:|---:|---|
56
  | 15T | 6 | 175,292 | 6,310,512 | 6 | 0 | `15T/15T_1..15T_2.tsfile` (2 shards) |
57
  | 1H | 6 | 43,822 | 1,577,592 | 6 | 0 | `1H/1H.tsfile` |
58
  | 30T | 6 | 87,645 | 3,155,220 | 6 | 0 | `30T/30T.tsfile` |
59
 
60
+ ## Files
61
+
62
+ The Hugging Face dataset card YAML points `configs.data_files` to all `*.tsfile` files in this repository.
63
+
64
+ - `15T/15T_1.tsfile`
65
+ - `15T/15T_2.tsfile`
66
+ - `1H/1H.tsfile`
67
+ - `30T/30T.tsfile`
68
+
69
  ## TsFile Storage Model
70
 
71
+ - Each original series (`id`) is stored as one TsFile device.
72
+ - Time-varying targets and dynamic covariates are stored as FIELD measurements.
73
+ - Source `timestamp` values are mapped to the TsFile `Time` column as millisecond timestamps.
74
+ - Table name(s): entsoe_15T, entsoe_1H, entsoe_30T.
75
 
76
  ### Column Schema
77
 
 
88
 
89
  ## Conversion Notes
90
 
91
+ - The source FEV format stores each time series as one nested row containing `id`, `timestamp[]`, and target or covariate arrays.
92
+ - The TsFile conversion flattens those nested arrays into long rows. Therefore, the `TsFile rows` values above correspond to the number of timestamped observations after flattening.
93
+ - TAG columns identify the device and static metadata. FIELD columns contain values that change over time.
94
+ - Large logical tables may be split into multiple `.tsfile` shards such as `<name>_1.tsfile`, `<name>_2.tsfile`, and so on. Shards listed for the same frequency belong to the same logical table.
95
 
96
  ## Reading Example
97
 
98
  ```python
99
  from tsfile import TsFileReader
100
 
101
+ reader = TsFileReader("15T/15T_1.tsfile")
102
  schemas = reader.get_all_table_schemas()
103
+ # Table name(s): entsoe_15T, entsoe_1H, entsoe_30T
104
  ```