THUgewu commited on
Commit
20f47b0
·
verified ·
1 Parent(s): 8f6f474

Add TsFile (converted from thuml/Time-Series-Library)

Browse files
MSL_test.tsfile CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:39bba664c39cca912daa5bd1dc3a2ce2b1ab43741cf7e5a28c08194a7d3a68b0
3
- size 267385
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f51e94dbcb8db8cff99578b02a52b30254818dc8e3f02a43bb4ba0f30951d023
3
+ size 265182
MSL_train.tsfile CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:937f946e131f22cbcbcb8aaa6731a222f59e583849ae35da3449591bdaa2e9cc
3
- size 191388
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07977dd22412a2e74453adfebbe645921123ad4e7bff092985335347e20a9395
3
+ size 190658
README.md CHANGED
@@ -1,56 +1,65 @@
1
- ---
2
- license: cc-by-4.0
3
- task_categories:
4
- - time-series-forecasting
5
- tags:
6
- - tsfile
7
- - timeseries
8
- - time-series
9
- - anomaly-detection
10
- pretty_name: MSL (TsFile)
11
- size_categories:
12
- - 100K<n<1M
13
- configs:
14
- - config_name: default
15
- data_files:
16
- - split: train
17
- path: MSL_train.tsfile
18
- - split: test
19
- path: MSL_test.tsfile
20
- ---
21
-
22
- # MSL (TsFile)
23
-
24
- Apache TsFile version of the `MSL` anomaly-detection subset of
25
- [`thuml/Time-Series-Library`](https://huggingface.co/datasets/thuml/Time-Series-Library).
26
-
27
- ## Overview
28
-
29
- Mars Science Laboratory rover telemetry (55 channels) for anomaly detection.
30
-
31
- - **Train:** 58,317 rows (all normal).
32
- - **Test:** 73,729 rows (with per-timestep 0/1 anomaly labels).
33
- - **Channels:** 55.
34
-
35
- The train and test segments are stored as two separate TsFiles
36
- (`MSL_train.tsfile` / `MSL_test.tsfile`), preserving the original split.
37
-
38
- ## Schema (TsFile structure)
39
-
40
- - **Time** (INT64, milliseconds) — row index * 1000 ms (the `.npy` source has no timestamp; a monotone 1 Hz proxy axis).
41
- - **FIELD** (55 channels, FLOAT) the sensor/metric channels.
42
- - **label** (INT32) — per-timestep anomaly flag (0/1). The train file is all 0
43
- (no ground-truth labels); the test file carries the anomaly labels.
44
-
45
- No channels or rows are dropped.
46
-
47
- ## Usage
48
-
49
- Read the `.tsfile` files with the Apache TsFile Java or Python SDK.
50
-
51
- ## Source & license
52
-
53
- - Original dataset: https://huggingface.co/datasets/thuml/Time-Series-Library (subset `MSL`)
54
- - Author / publisher: thuml (Tsinghua University)
55
- - Paper: https://arxiv.org/abs/2407.13278
56
- - License: CC BY 4.0
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - time-series-forecasting
5
+ tags:
6
+ - tsfile
7
+ - timeseries
8
+ - time-series
9
+ - anomaly-detection
10
+ pretty_name: MSL (TsFile)
11
+ size_categories:
12
+ - 100K<n<1M
13
+ configs:
14
+ - config_name: default
15
+ data_files:
16
+ - split: train
17
+ path: MSL_train.tsfile
18
+ - split: test
19
+ path: MSL_test.tsfile
20
+ - split: train_labels
21
+ path: labels/MSL_train_label.csv
22
+ - split: test_labels
23
+ path: labels/MSL_test_label.csv
24
+ ---
25
+
26
+ # MSL (TsFile)
27
+
28
+ Apache TsFile version of the `MSL` anomaly-detection subset of
29
+ [`thuml/Time-Series-Library`](https://huggingface.co/datasets/thuml/Time-Series-Library).
30
+
31
+ ## Overview
32
+
33
+ Mars Science Laboratory rover telemetry (55 channels) for anomaly detection.
34
+
35
+ - **Train:** 58,317 rows.
36
+ - **Test:** 73,729 rows.
37
+ - **Channels:** 55.
38
+
39
+ The train and test segments are stored as two separate TsFiles
40
+ (`MSL_train.tsfile` / `MSL_test.tsfile`), preserving the original split. Labels
41
+ are stored as separate CSV sidecar files in `labels/`.
42
+
43
+ ## Schema (TsFile structure)
44
+
45
+ - **Time** (INT64, milliseconds) - row index * 1000 ms. The `.npy` source has no
46
+ timestamp, so this is a monotone 1 Hz proxy axis.
47
+ - **FIELD** (55 channels, FLOAT) - the sensor/metric channels.
48
+ - **Labels** (CSV sidecar) - `labels/MSL_train_label.csv` and
49
+ `labels/MSL_test_label.csv` contain `Time,label`. The train label file is all
50
+ 0; the test label file carries the per-timestep anomaly labels.
51
+
52
+ No channels or rows are dropped. Labels are not stored inside the TsFile feature
53
+ tables.
54
+
55
+ ## Usage
56
+
57
+ Read the `.tsfile` files with the Apache TsFile Java or Python SDK. Join labels
58
+ from the sidecar CSV files by `Time` within the matching split.
59
+
60
+ ## Source & license
61
+
62
+ - Original dataset: https://huggingface.co/datasets/thuml/Time-Series-Library (subset `MSL`)
63
+ - Author / publisher: thuml (Tsinghua University)
64
+ - Paper: https://arxiv.org/abs/2407.13278
65
+ - License: CC BY 4.0
labels/MSL_test_label.csv ADDED
The diff for this file is too large to render. See raw diff
 
labels/MSL_train_label.csv ADDED
The diff for this file is too large to render. See raw diff