Dataset Viewer
Auto-converted to Parquet Duplicate
clip_id
stringlengths
18
41
source
stringclasses
4 values
task
stringclasses
49 values
object_class
stringclasses
34 values
demo_id
int32
0
611
side
stringclasses
2 values
n_frames
int32
4
49.9k
fps
float32
25
30
duration_s
float32
0.13
1.85k
width
int32
320
640
height
int32
240
480
has_pose
bool
2 classes
has_gradient
bool
2 classes
has_contact_mask
bool
2 classes
video
stringlengths
41
82
trajectory
dict
freetacman:ArrangeFruit:1:left
freetacman
ArrangeFruit
null
1
left
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_1_tactile_left.mp4
{ "TCP_euler_x": [ -8.438694473609885, -96.25995680759425, -107.4264524611726, -117.8115228438076, -127.4411228888552, -136.3412075296713, -144.5377316996119, -152.0566503320329, -158.9239183602902, -165.1654907177397, -170.8073223377374, -175.8753681536392, -180.39...
freetacman:ArrangeFruit:1:right
freetacman
ArrangeFruit
null
1
right
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_1_tactile_right.mp4
{ "TCP_euler_x": [ -8.438694473609885, -96.25995680759425, -107.4264524611726, -117.8115228438076, -127.4411228888552, -136.3412075296713, -144.5377316996119, -152.0566503320329, -158.9239183602902, -165.1654907177397, -170.8073223377374, -175.8753681536392, -180.39...
freetacman:ArrangeFruit:2:left
freetacman
ArrangeFruit
null
2
left
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_2_tactile_left.mp4
{ "TCP_euler_x": [ -8.656134130069857, -25.12409538512185, -19.61775911457689, -14.67872197153564, -10.29602081105196, -6.458692488179672, -3.155773857972648, -0.3763017754847162, 1.890686904230265, 3.656155326118451, 4.931066635126001, 5.72638397619906, 6.053070494...
freetacman:ArrangeFruit:2:right
freetacman
ArrangeFruit
null
2
right
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_2_tactile_right.mp4
{"TCP_euler_x":[-8.656134130069857,-25.12409538512185,-19.61775911457689,-14.67872197153564,-10.2960(...TRUNCATED)
freetacman:ArrangeFruit:3:left
freetacman
ArrangeFruit
null
3
left
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_3_tactile_left.mp4
{"TCP_euler_x":[-9.40997455069556,9.959498225186293,2.448868182019805,-4.205168863905389,-10.0479667(...TRUNCATED)
freetacman:ArrangeFruit:3:right
freetacman
ArrangeFruit
null
3
right
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_3_tactile_right.mp4
{"TCP_euler_x":[-9.40997455069556,9.959498225186293,2.448868182019805,-4.205168863905389,-10.0479667(...TRUNCATED)
freetacman:ArrangeFruit:4:left
freetacman
ArrangeFruit
null
4
left
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_4_tactile_left.mp4
{"TCP_euler_x":[-9.46824052448836,-16.11534527913357,-12.72929411475008,-10.14229904469207,-8.321952(...TRUNCATED)
freetacman:ArrangeFruit:4:right
freetacman
ArrangeFruit
null
4
right
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_4_tactile_right.mp4
{"TCP_euler_x":[-9.46824052448836,-16.11534527913357,-12.72929411475008,-10.14229904469207,-8.321952(...TRUNCATED)
freetacman:ArrangeFruit:5:left
freetacman
ArrangeFruit
null
5
left
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_5_tactile_left.mp4
{"TCP_euler_x":[-9.626053681152445,-24.2296360864678,-17.48697090767099,-11.79980057141982,-7.106384(...TRUNCATED)
freetacman:ArrangeFruit:5:right
freetacman
ArrangeFruit
null
5
right
240
30
8
640
480
false
false
false
videos/freetacman/ArrangeFruit/ArrangeFruit_5_tactile_right.mp4
{"TCP_euler_x":[-9.626053681152445,-24.2296360864678,-17.48697090767099,-11.79980057141982,-7.106384(...TRUNCATED)
End of preview. Expand in Data Studio

Tactile Video Pretrain (yxma/tactile-video-pretrain)

~48 hours of GelSight-style tactile video, aggregated across 4 public sources. Each row is one demonstration / episode / scan / touch session. Two configs share one shared video folder:

  • tactile_only — one tactile stream per row. Use for tactile-only self-supervised pretraining (video MAE / V-JEPA / contrastive / masked).
  • tactile_rgb — paired (tactile, scene-RGB) videos per row. Use for cross-modal alignment (CLIP-style, contrastive, masked cross-modal).

summary

Quick start

from datasets import load_dataset

# tactile-only stream
ds = load_dataset("yxma/tactile-video-pretrain", "tactile_only", split="train")
print(ds[0]["video"])           # repo-relative path
print(ds[0]["source"])          # "freetacman" | "gelslam_tracking" | ...

# paired tactile + RGB
ds2 = load_dataset("yxma/tactile-video-pretrain", "tactile_rgb", split="train")
print(ds2[0]["tactile_video"], ds2[0]["rgb_video"])

Resolve repo-relative paths to local files:

from huggingface_hub import snapshot_download
import os
root = snapshot_download("yxma/tactile-video-pretrain", repo_type="dataset")
local = os.path.join(root, ds[0]["video"])

Composition

source clips hours tactile resolution RGB pair?
freetacman 11,967 29.71 640×480 @ 30 FPS ✅ 11,965
touchandgo 140 14.66 640×480 @ 27 FPS ✅ 138
gelslam_recon 15 2.47 320×240 @ 25 FPS
gelslam_tracking 140 0.81 320×240 @ 25 FPS
TOTAL 12,262 47.65 mixed 12,103

source pie

composition

Total frames 4,929,371
Mean clip length 14 s
Median clip length 8 s
Codec H.264 (re-encoded for browser playback)

duration distribution

resolution distribution

Preview clips

Short (≤ 8 s) MP4 previews of one randomly-picked clip per source.

freetacman tactile freetacman tactile + scene
touchandgo tactile touchandgo tactile + scene
gelslam_tracking gelslam_recon (long surface scan)

Sample frames

Per-source 40-frame grids:

freetacman tactile touchandgo tactile
gelslam_tracking tactile gelslam_recon tactile

Paired tactile + scene RGB (16 random pairs):

pairs

Schema

tactile_only

column type description
clip_id string stable per-clip id, format depends on source
source string one of freetacman, gelslam_tracking, gelslam_recon, touchandgo
task string task name where applicable (FreeTacMan)
object_class string object class (GelSLAM)
demo_id int32 demonstration / episode id
side string left/right (FreeTacMan); else null
n_frames int32 number of video frames
fps float32 source frame rate
duration_s float32 n_frames / fps
width, height int32 spatial resolution
has_pose bool true ⇒ GelSLAM tracking 6-DoF poses available
has_gradient bool true ⇒ GelSLAM tracking gradient maps available
has_contact_mask bool true ⇒ GelSLAM tracking contact masks available
video string repo-relative path to MP4
trajectory nullable struct per-frame state, schema depends on source

tactile_rgb

Same schema with videotactile_video, plus rgb_video.

trajectory struct (nullable)

The struct columns differ per source — every field is optional. Convenient quick filter: row["trajectory"] is None ⇒ no per-frame state available.

field sources
timestamp, TCP_pos_*, TCP_euler_*, quat_*, gripper_distance freetacman
time_tactile, time_scene touchandgo
(none) gelslam_recon
6-DoF poses, contact masks, gradient maps gelslam_tracking — stored alongside videos as .npy, not in parquet

Sources

See SOURCES.md for per-source details (license, sensor, processing recipe) and SHORTLIST.md for the full roadmap.

source sensor license upstream
FreeTacMan McTac-derived GelSight-style MIT OpenDriveLab/FreeTacMan
GelSLAM (tracking + reconstruction) GelSight Mini (markerless) MIT joehjhuang/GelSLAM_dataset
Touch and Go GelSight (markered) + ego RGB CC-BY-4.0 project page

Investigated but not included

  • AgiBot World — audited 7 spreadsheet-flagged "tactile gripper" tasks; 0 hours of tactile video in the public release. Details in SOURCES.md.

Pipeline (vs. upstream)

  1. Rename / re-organize to a unified naming convention per source.
  2. Re-encode AVI → MP4 (libx264, CRF 18–20) so browser playback works on HF preview. GelSLAM's FFV1-AVI files become MP4 here.
  3. Hardlink where possible so on-disk usage stays low.
  4. Wrap available per-frame state as a nullable trajectory parquet struct.
  5. Add clip_id + source for stable filtering across configs.

Recommended uses

  • Tactile-only SSL — video MAE / V-JEPA on tactile_only; ~30 h FreeTacMan + ~3 h GelSLAM clean Mini frames.
  • Cross-modal pretrain — contrastive (tactile ↔ scene) on tactile_rgb.
  • Geometry-aware SSLhas_pose/has_gradient/has_contact_mask filters surface the GelSLAM tracking rows for dense supervision.
  • In-the-wild material reasoning — filter source = "touchandgo".
  • Sensor-shift robustness — train markerless, test markered (Touch and Go).

License

MIT, inherited from all currently included upstream sources.

Citation

@article{wu2025freetacman,
  title   = {FreeTacMan: Robot-free visuo-tactile data collection system for contact-rich manipulation},
  author  = {Wu, Longyan and Yu, Checheng and Ren, Jieji and Chen, Li and Jiang, Yufei and Huang, Ran and Gu, Guoying and Li, Hongyang},
  journal = {IEEE International Conference on Robotics and Automation},
  year    = {2026}
}
@inproceedings{huang2024gelslam,
  title   = {{GelSLAM}: Long-Horizon Object Tracking with Vision-Based Tactile Sensors},
  author  = {Huang, Hung-Jui and ...},
  year    = {2024}
}
@inproceedings{yang2022touchgo,
  title   = {Touch and Go: Learning from Human-Collected Vision and Touch},
  author  = {Yang, Fengyu and ...},
  booktitle = {NeurIPS Datasets and Benchmarks Track},
  year    = {2022}
}
Downloads last month
1,179