whenxuan commited on
Commit
6d6a036
·
1 Parent(s): b694cba

whenxuan: update new datasets

Browse files
README.md CHANGED
@@ -9,6 +9,16 @@ configs:
9
  path: gift-eval_256/*.arrow
10
  - split: gift_eval_512
11
  path: gift-eval_512/*.arrow
 
 
 
 
 
 
 
 
 
 
12
  dataset_info:
13
  features:
14
  - name: target
@@ -22,18 +32,75 @@ dataset_info:
22
  num_examples: 11000
23
  - name: gift_eval_512
24
  num_examples: 11000
 
 
 
 
 
 
 
 
 
 
25
  ---
26
 
27
  # Time-TSNE-Plot
28
 
29
- Time-series subsets for t-SNE visualization, with two splits by context length.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- ## Splits
32
 
33
- | Split | Rows | Description |
34
- |-------|------|-------------|
35
- | `gift_eval_256` | 11,000 | Context length 256 (`gift-eval_256/`) |
36
- | `gift_eval_512` | 11,000 | Context length 512 (`gift-eval_512/`) |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  ## Usage
39
 
@@ -41,6 +108,16 @@ Time-series subsets for t-SNE visualization, with two splits by context length.
41
  from datasets import load_dataset
42
 
43
  ds = load_dataset("whenxuan/Time-TSNE-Plot")
44
- ds_256 = ds["gift_eval_256"]
45
- ds_512 = ds["gift_eval_512"]
 
 
 
 
 
 
 
 
 
 
46
  ```
 
9
  path: gift-eval_256/*.arrow
10
  - split: gift_eval_512
11
  path: gift-eval_512/*.arrow
12
+ - split: electricity_256
13
+ path: electricity_256/*.arrow
14
+ - split: electricity_512
15
+ path: electricity_512/*.arrow
16
+ - split: ett1_15T_256
17
+ path: ett1-15T_256/*.arrow
18
+ - split: ett1_15T_512
19
+ path: ett1-15T_512/*.arrow
20
+ - split: rule_dataset_512
21
+ path: rule_dataset_512/*.arrow
22
  dataset_info:
23
  features:
24
  - name: target
 
32
  num_examples: 11000
33
  - name: gift_eval_512
34
  num_examples: 11000
35
+ - name: electricity_256
36
+ num_examples: 10000
37
+ - name: electricity_512
38
+ num_examples: 10000
39
+ - name: ett1_15T_256
40
+ num_examples: 7000
41
+ - name: ett1_15T_512
42
+ num_examples: 7000
43
+ - name: rule_dataset_512
44
+ num_examples: 11000
45
  ---
46
 
47
  # Time-TSNE-Plot
48
 
49
+ A multi-scenario evaluation collection for t-SNE visualization of time-series embeddings. Each split stores samples with a fixed window length; the `dataset` field carries **different label semantics** depending on the split (see below).
50
+
51
+ ## Evaluation Dimensions
52
+
53
+ | Dimension | Description | Recommended splits |
54
+ |-----------|-------------|-------------------|
55
+ | **1. Embeddings across datasets** | Multiple real/benchmark datasets; labels are dataset names | `gift_eval_256` / `gift_eval_512` |
56
+ | **2. Embeddings across rule-based series** | Rule generators such as triangle waves, square waves, ARMA, etc. | `rule_dataset_512` |
57
+ | **3. Embeddings across channels (same dataset)** | Multivariate ETT1 with sliding windows per channel; labels are channel indices | `ett1_15T_256` / `ett1_15T_512` |
58
+ | **4. Embeddings across time positions (same channel)** | Univariate Electricity with sliding windows; labels are window start timestamp indices | `electricity_256` / `electricity_512` |
59
+
60
+ ## Splits Overview
61
+
62
+ ### GIFT-Eval (labeled by dataset name)
63
+
64
+ Sampled from GIFT-Eval subsets; `dataset` is the **source dataset name** (e.g. `bitbrains_fast_storage`, `m4`, etc.; 11 categories in total).
65
+
66
+ | Split | Directory | # Samples | Window length |
67
+ |-------|-----------|-----------|---------------|
68
+ | `gift_eval_256` | `gift-eval_256/` | 11,000 | 256 |
69
+ | `gift_eval_512` | `gift-eval_512/` | 11,000 | 512 |
70
+
71
+ ### Electricity (labeled by timestamp)
72
+
73
+ **Sliding-window** segments on a univariate Electricity series; `dataset` is the **start timestamp index** of each window (string, e.g. `"0"`, `"1"`, …).
74
+
75
+ | Split | Directory | # Samples | Window length |
76
+ |-------|-----------|-----------|---------------|
77
+ | `electricity_256` | `electricity_256/` | 10,000 | 256 |
78
+ | `electricity_512` | `electricity_512/` | 10,000 | 512 |
79
 
80
+ ### ETT1-15T (labeled by channel)
81
 
82
+ **Sliding-window** segments on multivariate ETT1 (15-minute) series; `dataset` is the **channel index** (`"0"`–`"6"`, 7 channels in total).
83
+
84
+ | Split | Directory | # Samples | Window length |
85
+ |-------|-----------|-----------|---------------|
86
+ | `ett1_15T_256` | `ett1-15T_256/` | 7,000 | 256 |
87
+ | `ett1_15T_512` | `ett1-15T_512/` | 7,000 | 512 |
88
+
89
+ ### Rule (labeled by generator)
90
+
91
+ Synthetic series from rule-based generators (e.g. `generate_triangle_wave`, `generate_square_wave`, `generate_arma_samples`, etc.; 10 categories); `dataset` is the **rule/generator name**. Only window length 512 is provided for now.
92
+
93
+ | Split | Directory | # Samples | Window length |
94
+ |-------|-----------|-----------|---------------|
95
+ | `rule_dataset_512` | `rule_dataset_512/` | 11,000 | 512 |
96
+
97
+ ## Field Descriptions
98
+
99
+ | Field | Type | Meaning |
100
+ |-------|------|---------|
101
+ | `target` | `list[float64]` | Time-series values within the window |
102
+ | `dataset` | `string` | **Label** (semantics vary by split; see above) |
103
+ | `seq_length` | `int64` | Window length (256 or 512) |
104
 
105
  ## Usage
106
 
 
108
  from datasets import load_dataset
109
 
110
  ds = load_dataset("whenxuan/Time-TSNE-Plot")
111
+
112
+ # 1) Cross-dataset embeddings
113
+ gift = ds["gift_eval_256"]
114
+
115
+ # 2) Rule-based series embeddings
116
+ rules = ds["rule_dataset_512"]
117
+
118
+ # 3) Different channels within the same dataset
119
+ ett = ds["ett1_15T_256"]
120
+
121
+ # 4) Different time positions within the same channel
122
+ elec = ds["electricity_256"]
123
  ```
electricity_256/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e60a3829006122d3f0e43449e4e366b9fc725ab4aa38297711423f3952ab7d1a
3
+ size 20682952
electricity_256/dataset_info.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "target": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "List"
11
+ },
12
+ "dataset": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "seq_length": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "homepage": "",
22
+ "license": ""
23
+ }
electricity_256/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "d589b2be02b8188d",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
electricity_512/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15c5ff7e7f736184d50731f8e198fea2f7df509e71d9dd93af644adc666fb7b9
3
+ size 41162952
electricity_512/dataset_info.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "target": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "List"
11
+ },
12
+ "dataset": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "seq_length": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "homepage": "",
22
+ "license": ""
23
+ }
electricity_512/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "0cc912c864942280",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
ett1-15T_256/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dbeafaad7f71366dd3c011d41a7776b202005948f08f194111f71bf1d0ed709
3
+ size 14457936
ett1-15T_256/dataset_info.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "target": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "List"
11
+ },
12
+ "dataset": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "seq_length": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "homepage": "",
22
+ "license": ""
23
+ }
ett1-15T_256/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "0a4e313042f70e2b",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
ett1-15T_512/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e645cacb14fe61e5125944186bf842c7e0e5e0e9e55081abe8b1aabcd1b22c9c
3
+ size 28793936
ett1-15T_512/dataset_info.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "target": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "List"
11
+ },
12
+ "dataset": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "seq_length": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "homepage": "",
22
+ "license": ""
23
+ }
ett1-15T_512/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "e1aac1b77099695f",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
rule_dataset_512/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1f759aa23962d14779857f457617dba9f86d3c28ead485aeb7aea489a016f96
3
+ size 45492376
rule_dataset_512/dataset_info.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "target": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "List"
11
+ },
12
+ "dataset": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "seq_length": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "homepage": "",
22
+ "license": ""
23
+ }
rule_dataset_512/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "30de7ba6c0e07b55",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }