VGalaxies666 commited on
Commit
c31bb06
·
verified ·
1 Parent(s): 652dcc5

chore: sync metadata, drop original files

Browse files
Files changed (1) hide show
  1. README.md +89 -87
README.md CHANGED
@@ -1,87 +1,89 @@
1
- ---
2
- license: cc-by-4.0
3
- annotations_creators:
4
- - no-annotation
5
- language_creators:
6
- - found
7
- multilinguality:
8
- - monolingual
9
- source_datasets:
10
- - original
11
- task_categories:
12
- - time-series-forecasting
13
- task_ids:
14
- - univariate-time-series-forecasting
15
- - multivariate-time-series-forecasting
16
- tags:
17
- - forecasting
18
- - benchmark
19
- - monash-time-series-forecasting-repository
20
- - monash-tsf
21
- - language_creators:found
22
- - tsfile
23
- - modality:timeseries
24
- pretty_name: cif_2016 (TsFile format)
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: "*.tsfile"
30
- modality:
31
- - timeseries
32
- size_categories:
33
- - n<1K
34
- ---
35
-
36
- # cif_2016 (TsFile format)
37
-
38
- 72 monthly time series originated from the banking domain used in the CIF 2016 forecasting competition.
39
-
40
- This repository contains the full source `.tsf` series from the Monash Time Series Forecasting Repository converted to [Apache TsFile](https://tsfile.apache.org/) format.
41
-
42
- ## Summary
43
-
44
- - Source dataset: [`Monash-University/monash_tsf`](https://huggingface.co/datasets/Monash-University/monash_tsf)
45
- - Original source: https://zenodo.org/record/4656042
46
- - Monash subset: `cif_2016`
47
- - Modalities: Time-series
48
- - Source series: 72
49
- - Rows: 7,108 flattened timestamped observations
50
- - Frequency: `monthly`
51
- - Forecast horizon metadata: not specified
52
- - Missing-values metadata: False
53
- - Equal-length metadata: False
54
- - Missing target values preserved as NaN: 0
55
- - Series length range: 28 to 120
56
- - TsFile output: 1 file (cif_2016.tsfile)
57
-
58
- ## Files
59
-
60
- - `cif_2016.tsfile`
61
-
62
- ## TsFile Schema
63
-
64
- | Column | Role | TsFile type |
65
- |---|---|---|
66
- | `Time` | TIME | INT64 |
67
- | `series_id` | TAG | STRING |
68
- | `series_name` | TAG | STRING |
69
- | `horizon` | TAG | STRING |
70
- | `target` | FIELD | FLOAT |
71
-
72
- ## Conversion Notes
73
-
74
- - Each source `.tsf` data row is stored as one TsFile device.
75
- - Source `.tsf` attributes are stored as TAG columns.
76
- - The `target` series values are flattened into timestamped rows and stored as a FLOAT FIELD.
77
- - `Time` is synthesized from the source start timestamp and the `.tsf` frequency metadata, with millisecond precision.
78
- - Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table `cif_2016`.
79
-
80
- ## Reading Example
81
-
82
- ```python
83
- from tsfile import TsFileReader
84
-
85
- reader = TsFileReader("cif_2016.tsfile")
86
- schemas = reader.get_all_table_schemas()
87
- ```
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ annotations_creators:
4
+ - no-annotation
5
+ language_creators:
6
+ - found
7
+ multilinguality:
8
+ - monolingual
9
+ source_datasets:
10
+ - original
11
+ task_categories:
12
+ - time-series-forecasting
13
+ task_ids:
14
+ - univariate-time-series-forecasting
15
+ - multivariate-time-series-forecasting
16
+ tags:
17
+ - language_creators:found
18
+ - forecasting
19
+ - benchmark
20
+ - monash-time-series-forecasting-repository
21
+ - monash-tsf
22
+ - tsfile
23
+ - modality:timeseries
24
+ - timeseries
25
+ - format:tsfile
26
+ pretty_name: cif_2016 (TsFile format)
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: "*.tsfile"
32
+ modality:
33
+ - timeseries
34
+ size_categories:
35
+ - 1K<n<10K
36
+ ---
37
+
38
+ # cif_2016 (TsFile format)
39
+
40
+ 72 monthly time series originated from the banking domain used in the CIF 2016 forecasting competition.
41
+
42
+ This repository contains the full source `.tsf` series from the Monash Time Series Forecasting Repository converted to [Apache TsFile](https://tsfile.apache.org/) format.
43
+
44
+ ## Summary
45
+
46
+ - Source dataset: [`Monash-University/monash_tsf`](https://huggingface.co/datasets/Monash-University/monash_tsf)
47
+ - Original source: https://zenodo.org/record/4656042
48
+ - Monash subset: `cif_2016`
49
+ - Modalities: Time-series
50
+ - Source series: 72
51
+ - Rows: 7,108 flattened timestamped observations
52
+ - Frequency: `monthly`
53
+ - Forecast horizon metadata: not specified
54
+ - Missing-values metadata: False
55
+ - Equal-length metadata: False
56
+ - Missing target values preserved as NaN: 0
57
+ - Series length range: 28 to 120
58
+ - TsFile output: 1 file (cif_2016.tsfile)
59
+
60
+ ## Files
61
+
62
+ - `cif_2016.tsfile`
63
+
64
+ ## TsFile Schema
65
+
66
+ | Column | Role | TsFile type |
67
+ |---|---|---|
68
+ | `Time` | TIME | INT64 |
69
+ | `series_id` | TAG | STRING |
70
+ | `series_name` | TAG | STRING |
71
+ | `horizon` | TAG | STRING |
72
+ | `target` | FIELD | FLOAT |
73
+
74
+ ## Conversion Notes
75
+
76
+ - Each source `.tsf` data row is stored as one TsFile device.
77
+ - Source `.tsf` attributes are stored as TAG columns.
78
+ - The `target` series values are flattened into timestamped rows and stored as a FLOAT FIELD.
79
+ - `Time` is synthesized from the source start timestamp and the `.tsf` frequency metadata, with millisecond precision.
80
+ - Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table `cif_2016`.
81
+
82
+ ## Reading Example
83
+
84
+ ```python
85
+ from tsfile import TsFileReader
86
+
87
+ reader = TsFileReader("cif_2016.tsfile")
88
+ schemas = reader.get_all_table_schemas()
89
+ ```