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.
8ml_vial_place_30fps (TsFile)
TsFile conversion of the LeRobot v3.0 yam teleoperation dataset ttotmoon/8ml_vial_place_30fps.
- Original dataset: https://huggingface.co/datasets/ttotmoon/8ml_vial_place_30fps
- Author: ttotmoon
- License: Apache 2.0
- Robot type:
yam - Task: place the vial into the stand
- Created with: LeRobot-style metadata (
codebase_versionv3.0) - Modalities: Time-series
- Dropped / not included: the source
timestampcolumn (redundant withTime) and the camera video streams (not uploaded; see Conversion Notes).
Dataset Description
This dataset contains teleoperated yam-arm demonstrations for placing an 8 ml vial into a stand.
| Robot type | yam |
| Tasks | 1 (task_index=0) |
| Episodes | 197 |
| Frames / TsFile rows | 229,860 |
| Sampling rate | 30 fps |
| Original cameras | observation.images.head_camera, observation.images.left_wrist_camera, observation.images.right_wrist_camera |
Each frame records a 14-dimensional robot state and a 14-dimensional action. State and action indices are aligned with the original dataset card: left arm joints 0-5, left gripper, right arm joints 0-5, and right gripper.
Conversion Notes
Converted to TsFile with the generic LeRobot converter.
- One TsFile for the whole train split. All 197 episodes are stored in
data/vial_place_8ml_30fps.tsfile. The source columnsepisode_indexandtask_indexare TAG columns (the TsFile device dimension). Query one episode withWHERE episode_index=N, or one task withWHERE task_index=0. - Vector columns flattened to single-precision FLOAT, preserving the source
column name (
.->_, element index appended):observation.state[14] ->observation_state_0 .. observation_state_13action[14] ->action_0 .. action_13
- Scalar state kept.
indexis renamed tosample_index. - Time.
Time = round(timestamp * 1000)ms, restarting per episode. The sourcetimestampcolumn is dropped because it equalsTime / 1000seconds.frame_indexis kept. - Videos are NOT included in this repository. The original camera streams remain in the source dataset: https://huggingface.co/datasets/ttotmoon/8ml_vial_place_30fps/tree/main/videos
meta/is mirrored from the source withmeta/info.jsonrewritten to describe the converted TsFile schema and video policy. Aside from the redundanttimestampcolumn noted above, no numeric time-series rows are dropped.
Schema
| Column | Role | Type |
|---|---|---|
Time |
TIME (ms) | INT64 |
episode_index |
TAG | INT64 |
task_index |
TAG | INT64 |
frame_index |
FIELD | INT64 |
sample_index |
FIELD | INT64 |
observation_state_0 .. observation_state_13 |
FIELD | FLOAT |
action_0 .. action_13 |
FIELD | FLOAT |
Read Example
# Read data/vial_place_8ml_30fps.tsfile with the Apache TsFile SDK.
- Downloads last month
- 50