VGalaxies666 commited on
Commit
cabb901
·
verified ·
1 Parent(s): 62a5eb6

Add files using upload-large-folder tool

Browse files
Files changed (2) hide show
  1. README.md +85 -0
  2. nn5_weekly.tsfile +0 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ tags:
16
+ - time-series
17
+ - forecasting
18
+ - benchmark
19
+ - monash-time-series-forecasting-repository
20
+ - monash-tsf
21
+ - tsfile
22
+ - apache-tsfile
23
+ - modality:timeseries
24
+ - Time-series
25
+ - format:tsfile
26
+ pretty_name: nn5_weekly (TsFile format)
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: "*.tsfile"
32
+ ---
33
+
34
+ # nn5_weekly (TsFile format)
35
+
36
+ 111 time series to predicting the weekly cash withdrawals from ATMs in UK.
37
+
38
+ This repository contains the full source `.tsf` series from the Monash Time Series Forecasting Repository converted to [Apache TsFile](https://tsfile.apache.org/) format.
39
+
40
+ ## Summary
41
+
42
+ - Source dataset: [`Monash-University/monash_tsf`](https://huggingface.co/datasets/Monash-University/monash_tsf)
43
+ - Original source: https://zenodo.org/record/4656125
44
+ - Monash subset: `nn5_weekly`
45
+ - Modalities: Time-series
46
+ - Source series: 111
47
+ - Rows: 12,543 flattened timestamped observations
48
+ - Frequency: `weekly`
49
+ - Forecast horizon metadata: 8
50
+ - Missing-values metadata: False
51
+ - Equal-length metadata: True
52
+ - Missing target values preserved as NaN: 0
53
+ - Series length range: 113 to 113
54
+ - TsFile output: 1 file (nn5_weekly.tsfile)
55
+
56
+ ## Files
57
+
58
+ - `nn5_weekly.tsfile`
59
+
60
+ ## TsFile Schema
61
+
62
+ | Column | Role | TsFile type |
63
+ |---|---|---|
64
+ | `Time` | TIME | INT64 |
65
+ | `series_id` | TAG | STRING |
66
+ | `series_name` | TAG | STRING |
67
+ | `start_timestamp` | TAG | STRING |
68
+ | `target` | FIELD | FLOAT |
69
+
70
+ ## Conversion Notes
71
+
72
+ - Each source `.tsf` data row is stored as one TsFile device.
73
+ - Source `.tsf` attributes are stored as TAG columns.
74
+ - The `target` series values are flattened into timestamped rows and stored as a FLOAT FIELD.
75
+ - `Time` is synthesized from the source start timestamp and the `.tsf` frequency metadata, with millisecond precision.
76
+ - Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table `nn5_weekly`.
77
+
78
+ ## Reading Example
79
+
80
+ ```python
81
+ from tsfile import TsFileReader
82
+
83
+ reader = TsFileReader("nn5_weekly.tsfile")
84
+ schemas = reader.get_all_table_schemas()
85
+ ```
nn5_weekly.tsfile ADDED
Binary file (73.8 kB). View file