Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

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.

FineGym-skeleton Dataset

License: CC-BY-4.0

Overview

The FineGym-skeleton dataset is a human skeleton-based action recognition benchmark derived from the FineGym dataset. It provides temporally precise, fine-grained annotations of gymnastic actions along with 2D human pose sequences extracted from original video frames. It contains two subsets: Gym99-skeleton and Gym288-skeleton.

This dataset is designed to support research in:

  • Fine-grained action recognition
  • Temporally corrupted or incomplete action modeling
  • Skeleton-based representation learning
  • Physics-aware motion understanding

The dataset was introduced and used in the paper "FineTec: Fine-grained Action Recognition under Temporal Corruption", which has been accepted to AAAI 2026. In this work, the dataset serves as the primary evaluation benchmark for recognizing fine-grained actions from temporally corrupted skeleton sequences.

Update Log

  • 2025.11.11 FineGym-skeleton V1 released, including Gym288-skeleton.
  • 2026.5.21 FineGym-skeketon V2 released, including Gym99-skeleton and Gym288-skeleton. In this version, we have re-labeled the first frame of all samples from the two subsets to improve the accuracy of skeleton extraction.

Dataset Structure

The dataset is distributed as a single Python dictionary with two top-level keys: split and annotations. Following shows Gym288-skeleton as an example.

Top-Level Keys

  • split: Dictionary containing train/test splits.

    • train: List of 28,739 sample IDs (strings)
    • test: List of 9,484 sample IDs (strings)
  • annotations: List of 38,223 dictionaries, each representing one action instance with the following fields:

Key Type Shape / Example Description
frame_dir str "A0xAXXysHUo_002184_002237_0035_0036" Unique identifier for the action clip
label int 268 Class label (0–287, corresponding to 288 fine-grained gymnastic elements)
img_shape tuple (720, 1280) Height and width of original video frames
original_shape tuple (720, 1280) Same as img_shape (for compatibility)
total_frames int 48 Number of frames in the action sequence
keypoint np.ndarray (float16) (1, T, 17, 2) 2D joint coordinates (x, y) for 17 COCO-style keypoints over T frames
keypoint_score np.ndarray (float16) (1, T, 17) Confidence scores for each keypoint

Note: The first dimension (1) in keypoint and keypoint_score corresponds to the number of persons (always 1 in this dataset).

Action Classes

The dataset contains 288 distinct gymnastic elements across four apparatuses:

  • Floor Exercise (FX)
  • Balance Beam (BB)
  • Uneven Bars (UB)
  • Vault – Women (VT)

Each class represents a highly specific movement (e.g., "Switch leap with 0.5 turn", "Clear hip circle backward with 1 turn to handstand"), reflecting the fine-grained nature of competitive gymnastics scoring.

For the full list of class names and mappings, please refer to the website and paper of FineGym.

Usage Example

import numpy as np

# Load the dataset (e.g., using pickle or torch.load)
with open("gym288_skeleton.pkl", "rb") as f:
    data = pickle.load(f)

# Access training samples
train_ids = data["split"]["train"]  # list of strings

# Access annotations
sample = data["annotations"][0]
print("Label:", sample["label"])
print("Frames:", sample["total_frames"])
print("Keypoints shape:", sample["keypoint"].shape)  # (1, T, 17, 2)

# Extract skeleton sequence for model input
skeleton_seq = sample["keypoint"][0]  # (T, 17, 2)

Citation

If you use this dataset in your research, please cite both the FineTec and FineGym papers. FineTec's citation information will be updated upon publication.

@inproceedings{shao2020finegym,
  title={FineGym: A Hierarchical Video Dataset for Fine-grained Action Understanding},
  author={Shao, Dian and Zhao, Yue and Dai, Bo and Lin, Dahua},
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
  pages={2616--2625},
  year={2020}
}

@article{shao2026finetec,
  title={FineTec: Fine-Grained Action Recognition Under Temporal Corruption via Skeleton Decomposition and Sequence Completion},
  volume={40},
  url={https://ojs.aaai.org/index.php/AAAI/article/view/37838},
  DOI={10.1609/aaai.v40i11.37838},
  number={11},
  journal={Proceedings of the AAAI Conference on Artificial Intelligence},
  author={Shao, Dian and Shi, Mingfei and Liu, Like},
  year={2026},
  month={Mar.},
  pages={8842-8850}
}

License

This dataset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
You are free to share and adapt the material, even commercially, as long as appropriate credit is given.

Note: The underlying video data remains the property of its original sources (e.g., YouTube). This dataset only distributes extracted pose annotations, not raw videos.

Acknowledgements

  • Skeletons were extracted using pose estimators HRNet on the FineGym video corpus.
  • We thank the authors of FineGym for their foundational work in fine-grained action recognition.
Downloads last month
20,072