README: add 2 sim subsets, domain column, real/sim breakdown, 1.16M total
Browse files
README.md
CHANGED
|
@@ -66,13 +66,29 @@ configs:
|
|
| 66 |
data_files:
|
| 67 |
- split: train
|
| 68 |
path: feelanyforce/train-*.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
---
|
| 70 |
|
| 71 |
# GelSight Mini Pretrain
|
| 72 |
|
| 73 |

|
| 74 |
|
| 75 |
-
A unified, parquet-native collection of **~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
➡️ **For a full per-subset breakdown** (intro, paper, license, processing recipe, sample grids, stats) see **[SOURCES.md](SOURCES.md)**.
|
| 78 |
|
|
@@ -183,10 +199,12 @@ Real Tactile MNIST · digit-class balance (used as a sanity check that the upstr
|
|
| 183 |
| `fota_unlabeled` | FoTA — same captures, video frames | **516,523** (mixed¹)| mixed¹ | object name only |
|
| 184 |
| `threedcal` | py3DCal sphere indentation grid | **36,270**| markerless | probe x, y, penetration depth (mm) |
|
| 185 |
| `feats` | FEATS indentation with force grids | **16,711**| **markered** (two gel variants — see below) | indenter shape/size + contact forces |
|
| 186 |
-
| `gelslam` | GelSLAM tactile SLAM tracking + reconstruction | **
|
| 187 |
-
| `tactile_tracking`| TactileTracking (NormalFlow) 6DoF pose tracking | **1,
|
| 188 |
-
| `real_tactile_mnist` | Real Tactile MNIST 3D-printed digit touches | **
|
| 189 |
| `feelanyforce` | FeelAnyForce force-controlled indentations | **50,997** | markerless² | object name |
|
|
|
|
|
|
|
| 190 |
|
| 191 |
¹ FoTA used **different gels on the two gripper fingers** for many of its captures. Approximately 36 of 124 captures use a markered gel on the right finger and a markerless gel on the left; the remaining 88 captures use markerless gels on both. The per-row `markered` column was set by averaging ~50 frames per capture and counting visible dark dots in the mean image (threshold ≥10 dots). Use it to filter:
|
| 192 |
|
|
@@ -333,6 +351,33 @@ Every row, regardless of source, has the same columns. Optional fields are `null
|
|
| 333 |
| `f_x`, `f_y`, `f_z` | float32 | (FEATS) total force on probe (N) |
|
| 334 |
| `grid_z_max`, `grid_z_mean` | float32 | (FEATS) summary of per-pixel depth grid |
|
| 335 |
| `gel_variant` | string | (FEATS only) `"black_dot"` (standard markered gel) or `"different"` (the second sensor / different gel used in `test_diff_sensor_new_gel`) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 336 |
|
| 337 |
## Recommended uses
|
| 338 |
|
|
@@ -373,6 +418,13 @@ upstream sources if you use the data:
|
|
| 373 |
[arXiv:2506.06361](https://arxiv.org/abs/2506.06361) · *CC-BY-2.0*.
|
| 374 |
- **FeelAnyForce** — Sharei et al., 2024.
|
| 375 |
[HF dataset](https://huggingface.co/datasets/amirsh1376/FeelAnyForce) · *CC-BY-4.0*.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 376 |
|
| 377 |
Conversion details:
|
| 378 |
- All images are re-encoded to JPEG at quality 92. Original PNGs in
|
|
|
|
| 66 |
data_files:
|
| 67 |
- split: train
|
| 68 |
path: feelanyforce/train-*.parquet
|
| 69 |
+
- config_name: sim_tactile_mnist
|
| 70 |
+
data_files:
|
| 71 |
+
- split: train
|
| 72 |
+
path: sim_tactile_mnist/train-*.parquet
|
| 73 |
+
- config_name: sim_starstruck
|
| 74 |
+
data_files:
|
| 75 |
+
- split: train
|
| 76 |
+
path: sim_starstruck/train-*.parquet
|
| 77 |
+
- split: test
|
| 78 |
+
path: sim_starstruck/test-*.parquet
|
| 79 |
---
|
| 80 |
|
| 81 |
# GelSight Mini Pretrain
|
| 82 |
|
| 83 |

|
| 84 |
|
| 85 |
+
A unified, parquet-native collection of **~1.16 M [GelSight Mini](https://www.gelsight.com/gelsightmini/) tactile RGB frames** for self-supervised representation learning. **Ten** public datasets are aggregated under one schema:
|
| 86 |
+
- **758 K real-world frames** from 8 captures (FoTA, 3DCal, FEATS, GelSLAM, TactileTracking, Real Tactile MNIST, FeelAnyForce)
|
| 87 |
+
- **400 K simulated frames** from 2 Mini-calibrated Taxim renders (Sim Tactile MNIST, Sim Starstruck)
|
| 88 |
+
|
| 89 |
+
Every row carries a `domain` column (`"real"` or `"sim"`) and a `markered` flag (gel has tracking dots?) so you can mix or filter freely.
|
| 90 |
+
|
| 91 |
+

|
| 92 |
|
| 93 |
➡️ **For a full per-subset breakdown** (intro, paper, license, processing recipe, sample grids, stats) see **[SOURCES.md](SOURCES.md)**.
|
| 94 |
|
|
|
|
| 199 |
| `fota_unlabeled` | FoTA — same captures, video frames | **516,523** (mixed¹)| mixed¹ | object name only |
|
| 200 |
| `threedcal` | py3DCal sphere indentation grid | **36,270**| markerless | probe x, y, penetration depth (mm) |
|
| 201 |
| `feats` | FEATS indentation with force grids | **16,711**| **markered** (two gel variants — see below) | indenter shape/size + contact forces |
|
| 202 |
+
| `gelslam` | GelSLAM tactile SLAM tracking + reconstruction | **89,612** (28K tracking + 61K reconstruction) | markerless | episode + object name |
|
| 203 |
+
| `tactile_tracking`| TactileTracking (NormalFlow) 6DoF pose tracking | **1,605** | markerless | object + trial id |
|
| 204 |
+
| `real_tactile_mnist` | Real Tactile MNIST 3D-printed digit touches | **16,961** (14K train + 2.8K test) | markerless | digit class (0–9) + round id |
|
| 205 |
| `feelanyforce` | FeelAnyForce force-controlled indentations | **50,997** | markerless² | object name |
|
| 206 |
+
| `sim_tactile_mnist` | **SIM** · Taxim-rendered Mini imagery of digit touches | **200,000** | markerless | digit class + episode |
|
| 207 |
+
| `sim_starstruck` | **SIM** · Taxim-rendered Mini imagery of star objects | **200,000** | markerless | episode |
|
| 208 |
|
| 209 |
¹ FoTA used **different gels on the two gripper fingers** for many of its captures. Approximately 36 of 124 captures use a markered gel on the right finger and a markerless gel on the left; the remaining 88 captures use markerless gels on both. The per-row `markered` column was set by averaging ~50 frames per capture and counting visible dark dots in the mean image (threshold ≥10 dots). Use it to filter:
|
| 210 |
|
|
|
|
| 351 |
| `f_x`, `f_y`, `f_z` | float32 | (FEATS) total force on probe (N) |
|
| 352 |
| `grid_z_max`, `grid_z_mean` | float32 | (FEATS) summary of per-pixel depth grid |
|
| 353 |
| `gel_variant` | string | (FEATS only) `"black_dot"` (standard markered gel) or `"different"` (the second sensor / different gel used in `test_diff_sensor_new_gel`) |
|
| 354 |
+
| `domain` | string | `"real"` for real-world captures or `"sim"` for Taxim-rendered Mini imagery |
|
| 355 |
+
|
| 356 |
+
## Real vs simulated data
|
| 357 |
+
|
| 358 |
+
Every row carries a `domain` column. The 758 K real-world frames span 8
|
| 359 |
+
upstream datasets capturing physical robot–object contact on a real
|
| 360 |
+
GelSight Mini sensor; the 400 K simulated frames come from the
|
| 361 |
+
**Mini-calibrated Taxim renderer** of Schneider et al.
|
| 362 |
+
|
| 363 |
+
```python
|
| 364 |
+
# Real-only markerless pool (largest pretraining target)
|
| 365 |
+
real_markerless = concatenate_datasets([
|
| 366 |
+
load_dataset("yxma/gelsight-mini-pretrain", c, split="train"
|
| 367 |
+
).filter(lambda r: r["domain"] == "real" and not r["markered"])
|
| 368 |
+
for c in ["fota_unlabeled", "threedcal", "gelslam", "tactile_tracking",
|
| 369 |
+
"real_tactile_mnist", "feelanyforce"]
|
| 370 |
+
])
|
| 371 |
+
|
| 372 |
+
# Sim pool — useful for sim-to-real transfer or as augmentation
|
| 373 |
+
sim_pool = concatenate_datasets([
|
| 374 |
+
load_dataset("yxma/gelsight-mini-pretrain", c, split="train")
|
| 375 |
+
for c in ["sim_tactile_mnist", "sim_starstruck"]
|
| 376 |
+
])
|
| 377 |
+
```
|
| 378 |
+
|
| 379 |
+
The two sim subsets are from the **same authors as `real_tactile_mnist`**
|
| 380 |
+
(Schneider et al. 2025) and use the same Mini sensor model.
|
| 381 |
|
| 382 |
## Recommended uses
|
| 383 |
|
|
|
|
| 418 |
[arXiv:2506.06361](https://arxiv.org/abs/2506.06361) · *CC-BY-2.0*.
|
| 419 |
- **FeelAnyForce** — Sharei et al., 2024.
|
| 420 |
[HF dataset](https://huggingface.co/datasets/amirsh1376/FeelAnyForce) · *CC-BY-4.0*.
|
| 421 |
+
- **Sim Tactile MNIST / Sim Starstruck** — Schneider et al., 2025 (same authors as Real Tactile MNIST).
|
| 422 |
+
[`tactile-mnist-touch-syn-single-t32-320x240`](https://huggingface.co/datasets/TimSchneider42/tactile-mnist-touch-syn-single-t32-320x240),
|
| 423 |
+
[`tactile-mnist-touch-starstruck-syn-single-t32-320x240`](https://huggingface.co/datasets/TimSchneider42/tactile-mnist-touch-starstruck-syn-single-t32-320x240).
|
| 424 |
+
Mini-calibrated Taxim renderer. *CC-BY-2.0*.
|
| 425 |
+
- **Taxim** simulator (used by the above sim sources) — Si & Yuan, 2022.
|
| 426 |
+
[GitHub](https://github.com/Robo-Touch/Taxim),
|
| 427 |
+
[arXiv:2109.04027](https://arxiv.org/abs/2109.04027).
|
| 428 |
|
| 429 |
Conversion details:
|
| 430 |
- All images are re-encoded to JPEG at quality 92. Original PNGs in
|