VGalaxies666 commited on
Commit
c7b5df1
·
verified ·
1 Parent(s): 44c91dd

Add files using upload-large-folder tool

Browse files
Files changed (4) hide show
  1. .gitattributes +2 -0
  2. README.md +90 -0
  3. rideshare_1.tsfile +3 -0
  4. rideshare_2.tsfile +3 -0
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ rideshare_1.tsfile filter=lfs diff=lfs merge=lfs -text
62
+ rideshare_2.tsfile filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: rideshare (TsFile format)
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: "*.tsfile"
32
+ ---
33
+
34
+ # rideshare (TsFile format)
35
+
36
+ 156 hourly time series representations of attributes related to Uber and Lyft rideshare services for various locations in New York between 26/11/2018 and 18/12/2018.
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/5122114
44
+ - Monash subset: `rideshare`
45
+ - Modalities: Time-series
46
+ - Source series: 2,304
47
+ - Rows: 1,246,464 flattened timestamped observations
48
+ - Frequency: `hourly`
49
+ - Forecast horizon metadata: not specified
50
+ - Missing-values metadata: True
51
+ - Equal-length metadata: True
52
+ - Missing target values preserved as NaN: 494,649
53
+ - Series length range: 541 to 541
54
+ - TsFile output: 2 files (rideshare_1.tsfile .. rideshare_2.tsfile)
55
+
56
+ ## Files
57
+
58
+ - `rideshare_1.tsfile`
59
+ - `rideshare_2.tsfile`
60
+
61
+ ## TsFile Schema
62
+
63
+ | Column | Role | TsFile type |
64
+ |---|---|---|
65
+ | `Time` | TIME | INT64 |
66
+ | `series_id` | TAG | STRING |
67
+ | `series_name` | TAG | STRING |
68
+ | `source_location` | TAG | STRING |
69
+ | `provider_name` | TAG | STRING |
70
+ | `provider_service` | TAG | STRING |
71
+ | `type` | TAG | STRING |
72
+ | `start_timestamp` | TAG | STRING |
73
+ | `target` | FIELD | FLOAT |
74
+
75
+ ## Conversion Notes
76
+
77
+ - Each source `.tsf` data row is stored as one TsFile device.
78
+ - Source `.tsf` attributes are stored as TAG columns.
79
+ - The `target` series values are flattened into timestamped rows and stored as a FLOAT FIELD.
80
+ - `Time` is synthesized from the source start timestamp and the `.tsf` frequency metadata, with millisecond precision.
81
+ - Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table `rideshare`.
82
+
83
+ ## Reading Example
84
+
85
+ ```python
86
+ from tsfile import TsFileReader
87
+
88
+ reader = TsFileReader("rideshare_1.tsfile")
89
+ schemas = reader.get_all_table_schemas()
90
+ ```
rideshare_1.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd431ba04d1ca828d75ba8594b97519cfbcccf71afb03d0203c483ad249910f2
3
+ size 2157436
rideshare_2.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4badf0045e66136eed64010e665bb66e9b92eb9fd1c83474c73fb7b499f1da3c
3
+ size 525828