VGalaxies666 commited on
Commit
9690875
·
verified ·
1 Parent(s): d5c662d

chore: sync metadata, drop original files

Browse files
Files changed (1) hide show
  1. README.md +105 -101
README.md CHANGED
@@ -1,101 +1,105 @@
1
- ---
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
- - forecasting
14
- - benchmark
15
- - fev
16
- - arxiv:2509.26468
17
- - tsfile
18
- - modality:timeseries
19
- size_categories:
20
- - n<1K
21
- pretty_name: redset (TsFile format)
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: "**/*.tsfile"
27
- modality:
28
- - timeseries
29
- ---
30
-
31
- # redset (TsFile format)
32
-
33
- This repository contains time-series forecasting data stored in [Apache TsFile](https://tsfile.apache.org/) format.
34
-
35
- ## Summary
36
-
37
- - FEV subset: `redset`
38
- - Unified source collection: [`autogluon/fev_datasets`](https://huggingface.co/datasets/autogluon/fev_datasets)
39
- - Original source: https://github.com/amazon-science/redset/
40
- - Paper / citation: [[17]](https://www.amazon.science/publications/why-tpc-is-not-enough-an-analysis-of-the-amazon-redshift-fleet)
41
- - Series: 126 / 138 / 118
42
- - Modalities: Time-series
43
- - TsFile rows (flattened observations): 4,295,849
44
- - Frequencies: 15T, 1H, 5T
45
- - TsFile files: 6
46
- - Time precision: milliseconds (`INT64`).
47
-
48
- Licensing and citation requirements follow the original source. This repository does not claim ownership of the original data.
49
-
50
- ## Dataset Statistics
51
-
52
- | Frequency | Series | Median series length | TsFile rows (observations) | Dynamic columns | Static columns | Data files |
53
- |---|---:|---:|---:|---:|---:|---|
54
- | 15T | 126 | 8,640 | 1,052,371 | 1 | 1 | `15T/15T_1..15T_2.tsfile` (2 shards) |
55
- | 1H | 138 | 2,160 | 283,070 | 1 | 1 | `1H/1H.tsfile` |
56
- | 5T | 118 | 25,920 | 2,960,408 | 1 | 1 | `5T/5T_1..5T_3.tsfile` (3 shards) |
57
-
58
- ## Files
59
-
60
- The Hugging Face dataset card YAML points `configs.data_files` to all `*.tsfile` files in this repository.
61
-
62
- - `15T/15T_1.tsfile`
63
- - `15T/15T_2.tsfile`
64
- - `1H/1H.tsfile`
65
- - `5T/5T_1.tsfile`
66
- - `5T/5T_2.tsfile`
67
- - `5T/5T_3.tsfile`
68
-
69
- ## TsFile Storage Model
70
-
71
- - Each original series (`id`) is stored as one TsFile device.
72
- - Static covariate columns are stored as TAG columns: `subset`.
73
- - Time-varying targets and dynamic covariates are stored as FIELD measurements.
74
- - Source `timestamp` values are mapped to the TsFile `Time` column as millisecond timestamps.
75
- - Table name(s): redset_15T, redset_1H, redset_5T.
76
-
77
- ### Column Schema
78
-
79
- | Column | Role | TsFile type |
80
- |---|---|---|
81
- | `Time` | Time column | INT64 |
82
- | `id` | TAG (device dimension) | STRING |
83
- | `subset` | TAG (device dimension) | STRING |
84
- | `target` | FIELD (measurement) | FLOAT |
85
-
86
- ## Conversion Notes
87
-
88
- - The source FEV format stores each time series as one nested row containing `id`, `timestamp[]`, and target or covariate arrays.
89
- - 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.
90
- - TAG columns identify the device and static metadata. FIELD columns contain values that change over time.
91
- - 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.
92
-
93
- ## Reading Example
94
-
95
- ```python
96
- from tsfile import TsFileReader
97
-
98
- reader = TsFileReader("15T/15T_1.tsfile")
99
- schemas = reader.get_all_table_schemas()
100
- # Table name(s): redset_15T, redset_1H, redset_5T
101
- ```
 
 
 
 
 
1
+ ---
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
+ - forecasting
14
+ - benchmark
15
+ - fev
16
+ - arxiv:2509.26468
17
+ - tsfile
18
+ - modality:timeseries
19
+ - timeseries
20
+ - format:tsfile
21
+ size_categories:
22
+ - 100K<n<1M
23
+ pretty_name: redset (TsFile format)
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: "**/*.tsfile"
29
+ modality:
30
+ - tabular
31
+ - text
32
+ - timeseries
33
+ ---
34
+
35
+ # redset (TsFile format)
36
+
37
+ This repository contains time-series forecasting data stored in [Apache TsFile](https://tsfile.apache.org/) format.
38
+
39
+ ## Summary
40
+
41
+ - FEV subset: `redset`
42
+ - Unified source collection: [`autogluon/fev_datasets`](https://huggingface.co/datasets/autogluon/fev_datasets)
43
+ - Original source: https://github.com/amazon-science/redset/
44
+ - Paper / citation: [[17]](https://www.amazon.science/publications/why-tpc-is-not-enough-an-analysis-of-the-amazon-redshift-fleet)
45
+ - Series: 126 / 138 / 118
46
+ - Modalities: Time-series
47
+ - TsFile rows (flattened observations): 4,295,849
48
+ - Frequencies: 15T, 1H, 5T
49
+ - TsFile files: 6
50
+ - Time precision: milliseconds (`INT64`).
51
+
52
+ Licensing and citation requirements follow the original source. This repository does not claim ownership of the original data.
53
+
54
+ ## Dataset Statistics
55
+
56
+ | Frequency | Series | Median series length | TsFile rows (observations) | Dynamic columns | Static columns | Data files |
57
+ |---|---:|---:|---:|---:|---:|---|
58
+ | 15T | 126 | 8,640 | 1,052,371 | 1 | 1 | `15T/15T_1..15T_2.tsfile` (2 shards) |
59
+ | 1H | 138 | 2,160 | 283,070 | 1 | 1 | `1H/1H.tsfile` |
60
+ | 5T | 118 | 25,920 | 2,960,408 | 1 | 1 | `5T/5T_1..5T_3.tsfile` (3 shards) |
61
+
62
+ ## Files
63
+
64
+ The Hugging Face dataset card YAML points `configs.data_files` to all `*.tsfile` files in this repository.
65
+
66
+ - `15T/15T_1.tsfile`
67
+ - `15T/15T_2.tsfile`
68
+ - `1H/1H.tsfile`
69
+ - `5T/5T_1.tsfile`
70
+ - `5T/5T_2.tsfile`
71
+ - `5T/5T_3.tsfile`
72
+
73
+ ## TsFile Storage Model
74
+
75
+ - Each original series (`id`) is stored as one TsFile device.
76
+ - Static covariate columns are stored as TAG columns: `subset`.
77
+ - Time-varying targets and dynamic covariates are stored as FIELD measurements.
78
+ - Source `timestamp` values are mapped to the TsFile `Time` column as millisecond timestamps.
79
+ - Table name(s): redset_15T, redset_1H, redset_5T.
80
+
81
+ ### Column Schema
82
+
83
+ | Column | Role | TsFile type |
84
+ |---|---|---|
85
+ | `Time` | Time column | INT64 |
86
+ | `id` | TAG (device dimension) | STRING |
87
+ | `subset` | TAG (device dimension) | STRING |
88
+ | `target` | FIELD (measurement) | FLOAT |
89
+
90
+ ## Conversion Notes
91
+
92
+ - The source FEV format stores each time series as one nested row containing `id`, `timestamp[]`, and target or covariate arrays.
93
+ - 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.
94
+ - TAG columns identify the device and static metadata. FIELD columns contain values that change over time.
95
+ - 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.
96
+
97
+ ## Reading Example
98
+
99
+ ```python
100
+ from tsfile import TsFileReader
101
+
102
+ reader = TsFileReader("15T/15T_1.tsfile")
103
+ schemas = reader.get_all_table_schemas()
104
+ # Table name(s): redset_15T, redset_1H, redset_5T
105
+ ```