--- license: apache-2.0 task_categories: - video-classification - robotics tags: - 3d-pose - human-pose-estimation - motion - finevideo - vla language: - en size_categories: - 10M= 4 of 8 frames** have no person detected by YOLOv8 (confidence >= 0.75). This removes windows where the subject is off-screen, occluded, or in a scene transition. Some windows may still contain `null`/`NaN` values for individual joints where the pose estimator failed — downstream consumers should check for this. ## Related Resources | Resource | Description | |----------|-------------| | [EmpathicRobotics/FineVideo-Phase5-AgentTokens](https://huggingface.co/datasets/EmpathicRobotics/FineVideo-Phase5-AgentTokens) | Merged multimodal dataset with tokenised pose + video tokens (hierarchical, full metadata) | | [EmpathicRobotics/FineVideo-Phase7-Flattened](https://huggingface.co/datasets/EmpathicRobotics/FineVideo-Phase7-Flattened) | Flat Megatron-LM JSONL (ready for pretraining) | | [EmpathicRobotics/tokenizer-vla-adaptive](https://huggingface.co/EmpathicRobotics/tokenizer-vla-adaptive) | HuggingFace tokenizer (144,215 vocab) | ## Usage ```python from datasets import load_dataset import numpy as np ds = load_dataset("EmpathicRobotics/FineVideo-Phase4-YOLOPose", streaming=True) for sample in ds["train"]: video_id = sample["video_id"] window_id = sample["window_id"] states = np.array(sample["states"]) # (8, 17, 3) timestamp = window_id / 30.0 # seconds from video start print(f"Video: {video_id}") print(f"Window: {window_id} ({timestamp:.3f}s)") print(f"Pelvis (frame 0): {states[0, 0]}") # always [0, 0, 0] print(f"Right wrist (frame 0): {states[0, 16]}") break ``` ## Citation Part of the FineVideo-VLA project. If you use this data, please cite the FineVideo dataset: ```bibtex @misc{Farré2024FineVideo, title={FineVideo}, author={Farré, Miquel and Marafioti, Andi and Tunstall, Lewis and Von Werra, Leandro and Wolf, Thomas}, year={2024}, howpublished={\url{https://huggingface.co/datasets/HuggingFaceFV/finevideo}}, } ``` ## License Apache 2.0