File size: 4,298 Bytes
e9dac18
 
b694cba
 
 
 
 
 
 
 
 
6d6a036
 
 
 
 
 
 
 
 
 
b694cba
 
 
 
 
 
 
 
 
 
 
 
 
6d6a036
 
 
 
 
 
 
 
 
 
e9dac18
b694cba
 
 
6d6a036
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b694cba
6d6a036
b694cba
6d6a036
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b694cba
 
 
 
 
 
 
6d6a036
 
 
 
 
 
 
 
 
 
 
 
b694cba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
license: apache-2.0
tags:
- timeseries
configs:
- config_name: default
  data_files:
  - split: gift_eval_256
    path: gift-eval_256/*.arrow
  - split: gift_eval_512
    path: gift-eval_512/*.arrow
  - split: electricity_256
    path: electricity_256/*.arrow
  - split: electricity_512
    path: electricity_512/*.arrow
  - split: ett1_15T_256
    path: ett1-15T_256/*.arrow
  - split: ett1_15T_512
    path: ett1-15T_512/*.arrow
  - split: rule_dataset_512
    path: rule_dataset_512/*.arrow
dataset_info:
  features:
  - name: target
    sequence: float64
  - name: dataset
    dtype: string
  - name: seq_length
    dtype: int64
  splits:
  - name: gift_eval_256
    num_examples: 11000
  - name: gift_eval_512
    num_examples: 11000
  - name: electricity_256
    num_examples: 10000
  - name: electricity_512
    num_examples: 10000
  - name: ett1_15T_256
    num_examples: 7000
  - name: ett1_15T_512
    num_examples: 7000
  - name: rule_dataset_512
    num_examples: 11000
---

# Time-TSNE-Plot

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).

## Evaluation Dimensions

| Dimension | Description | Recommended splits |
|-----------|-------------|-------------------|
| **1. Embeddings across datasets** | Multiple real/benchmark datasets; labels are dataset names | `gift_eval_256` / `gift_eval_512` |
| **2. Embeddings across rule-based series** | Rule generators such as triangle waves, square waves, ARMA, etc. | `rule_dataset_512` |
| **3. Embeddings across channels (same dataset)** | Multivariate ETT1 with sliding windows per channel; labels are channel indices | `ett1_15T_256` / `ett1_15T_512` |
| **4. Embeddings across time positions (same channel)** | Univariate Electricity with sliding windows; labels are window start timestamp indices | `electricity_256` / `electricity_512` |

## Splits Overview

### GIFT-Eval (labeled by dataset name)

Sampled from GIFT-Eval subsets; `dataset` is the **source dataset name** (e.g. `bitbrains_fast_storage`, `m4`, etc.; 11 categories in total).

| Split | Directory | # Samples | Window length |
|-------|-----------|-----------|---------------|
| `gift_eval_256` | `gift-eval_256/` | 11,000 | 256 |
| `gift_eval_512` | `gift-eval_512/` | 11,000 | 512 |

### Electricity (labeled by timestamp)

**Sliding-window** segments on a univariate Electricity series; `dataset` is the **start timestamp index** of each window (string, e.g. `"0"`, `"1"`, …).

| Split | Directory | # Samples | Window length |
|-------|-----------|-----------|---------------|
| `electricity_256` | `electricity_256/` | 10,000 | 256 |
| `electricity_512` | `electricity_512/` | 10,000 | 512 |

### ETT1-15T (labeled by channel)

**Sliding-window** segments on multivariate ETT1 (15-minute) series; `dataset` is the **channel index** (`"0"``"6"`, 7 channels in total).

| Split | Directory | # Samples | Window length |
|-------|-----------|-----------|---------------|
| `ett1_15T_256` | `ett1-15T_256/` | 7,000 | 256 |
| `ett1_15T_512` | `ett1-15T_512/` | 7,000 | 512 |

### Rule (labeled by generator)

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.

| Split | Directory | # Samples | Window length |
|-------|-----------|-----------|---------------|
| `rule_dataset_512` | `rule_dataset_512/` | 11,000 | 512 |

## Field Descriptions

| Field | Type | Meaning |
|-------|------|---------|
| `target` | `list[float64]` | Time-series values within the window |
| `dataset` | `string` | **Label** (semantics vary by split; see above) |
| `seq_length` | `int64` | Window length (256 or 512) |

## Usage

```python
from datasets import load_dataset

ds = load_dataset("whenxuan/Time-TSNE-Plot")

# 1) Cross-dataset embeddings
gift = ds["gift_eval_256"]

# 2) Rule-based series embeddings
rules = ds["rule_dataset_512"]

# 3) Different channels within the same dataset
ett = ds["ett1_15T_256"]

# 4) Different time positions within the same channel
elec = ds["electricity_256"]
```