Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {'train': ('tsfile', {}), 'test': ('tsfile', {}), 'train_labels': ('csv', {}), 'test_labels': ('csv', {})}
Error code:   FileFormatMismatchBetweenSplitsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Handwriting (TsFile)

Apache TsFile version of the Handwriting UEA classification subset of thuml/Time-Series-Library.

Overview

Accelerometer traces of writing the 26 letters; classify the letter.

  • Train samples: 150.
  • Test samples: 850.
  • Dimensions (channels): 3.
  • Series length: 152.
  • Classes: 26.

Each sample is an independent multivariate series. TRAIN and TEST are stored as two separate TsFiles (Handwriting_train.tsfile / Handwriting_test.tsfile). Class labels are stored as separate CSV sidecar files in labels/.

Schema (TsFile structure)

  • sample_index (TAG) - one device per sample. Query one sample with WHERE sample_index=0.
  • Time (INT64) - within-sample position (0..151), a frame index rather than a wall-clock timestamp.
  • dim_0..dim_2 (FIELD, FLOAT) - the 3 channels at each position.
  • Labels (CSV sidecar) - labels/Handwriting_train_labels.csv and labels/Handwriting_test_labels.csv contain sample_index,class_label, one row per sample.

Converted from the sktime .ts format. No dimensions, time points, samples, or labels are dropped. Labels are not stored inside the TsFile feature tables.

Usage

Read the .tsfile files with the Apache TsFile Java or Python SDK. Join labels from the sidecar CSV files by sample_index within the matching split.

Source & license

Downloads last month
59

Paper for THUgewu/Handwriting