yxma commited on
Commit
c757de5
·
verified ·
1 Parent(s): fda1349

document FoTA mixed-gel finding (some captures use markered right finger)

Browse files
Files changed (1) hide show
  1. README.md +23 -9
README.md CHANGED
@@ -88,29 +88,43 @@ Public GelSight Mini data is scattered. Authors release each dataset with its ow
88
 
89
  | Subset | Source dataset | Frames | Gel | Has labels |
90
  |-------------------|------------------------------------------|----------:|------------|------------------------------------------|
91
- | `fota_labeled` | FoTA — *panda_warped* still captures | **29,494**| markerless | end-effector x,y,z + quaternion |
92
- | `fota_unlabeled` | FoTA — same captures, video frames | **516,523**| markerless | object name only |
93
  | `threedcal` | py3DCal sphere indentation grid | **36,270**| markerless | probe x, y, penetration depth (mm) |
94
  | `feats` | FEATS indentation with force grids | **22,013**| **markered** (two gel variants — see below) | indenter shape/size + contact forces |
95
- | **Total markerless** | (FoTA + 3DCal) | **582,287** | | |
96
- | **Total markered** | (FEATS) | **22,013** | | |
 
 
 
 
 
 
97
 
98
  ## Sample images
99
 
100
- ### `fota_labeled`  ·  29,494 frames  ·  markerless  ·  +6DoF pose
101
- One labeled still captured at every recorded end-effector pose along a Franka Panda trajectory pressing one of 13 household objects into the gel. The arc-shaped imprints are tactile signatures of objects (here, plier handles, clamps, knives, etc.).
 
 
 
 
 
 
102
 
103
- ![fota_labeled](assets/samples_fota_labeled.png)
 
 
104
 
105
  ### `threedcal`  ·  36,270 frames  ·  markerless  ·  +xyz pose
106
  A motorised sphere indenter is pressed into the gel at **1,209 different (x, y) positions** at a fixed 3 mm depth. The bright spot moves as the probe walks across the sensor surface — useful for learning a calibrated position→appearance mapping.
107
 
108
- ![threedcal](assets/samples_threedcal.png)
109
 
110
  ### `feats`  ·  22,013 frames  ·  **markered**  ·  +force
111
  Six indenter shapes (sphere, cuboid, cylinder, pyramid, cross, plus one "unknown" set of held-out probes), each pressed into a markered (dotted) GelSight Mini gel. Provides f_x, f_y, f_z forces and a 32×24 depth grid per image. Forces span from ~0 N (light touch) to **−73 N** (heavy normal compression).
112
 
113
- ![feats](assets/samples_feats.png)
114
 
115
  > **⚠️ FEATS has two physical gel variants.** A new column `gel_variant` distinguishes them:
116
  > - `"black_dot"` (21,618 frames) — the standard dotted Mini gel used for `train`, `val`, `test`, `test_unknown_indenters`, `test_diff_sensor_old_gel`.
 
88
 
89
  | Subset | Source dataset | Frames | Gel | Has labels |
90
  |-------------------|------------------------------------------|----------:|------------|------------------------------------------|
91
+ | `fota_labeled` | FoTA — *panda_warped* still captures | **29,494** (66% markerless, 34% markered) | mixed¹ | end-effector x,y,z + quaternion |
92
+ | `fota_unlabeled` | FoTA — same captures, video frames | **516,523** (mixed¹)| mixed¹ | object name only |
93
  | `threedcal` | py3DCal sphere indentation grid | **36,270**| markerless | probe x, y, penetration depth (mm) |
94
  | `feats` | FEATS indentation with force grids | **22,013**| **markered** (two gel variants — see below) | indenter shape/size + contact forces |
95
+
96
+ ¹ 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:
97
+
98
+ ```python
99
+ ds = load_dataset("yxma/gelsight-mini-pretrain", "fota_labeled", split="train")
100
+ markerless = ds.filter(lambda r: not r["markered"])
101
+ markered = ds.filter(lambda r: r["markered"])
102
+ ```
103
 
104
  ## Sample images
105
 
106
+ ### `fota_labeled`  ·  29,494 frames  ·  mixed gel  ·  +6DoF pose
107
+ One labeled still captured at every recorded end-effector pose along a Franka Panda trajectory pressing one of 13 household objects into the gel. The arc-shaped imprints are tactile signatures of objects (here, plier handles, clamps, knives, etc.). FoTA used **both markered and markerless gels** — use the `markered` column to filter.
108
+
109
+ Random sample (mixed):
110
+
111
+ ![fota_labeled mixed](assets/samples_100_fota_labeled.png)
112
+
113
+ Per gel variant:
114
 
115
+ | markerless (66% of the data) | markered (34% of the data) |
116
+ |:---:|:---:|
117
+ | ![fota markerless](assets/samples_100_fota_labeled_markerless.png) | ![fota markered](assets/samples_100_fota_labeled_markered.png) |
118
 
119
  ### `threedcal`  ·  36,270 frames  ·  markerless  ·  +xyz pose
120
  A motorised sphere indenter is pressed into the gel at **1,209 different (x, y) positions** at a fixed 3 mm depth. The bright spot moves as the probe walks across the sensor surface — useful for learning a calibrated position→appearance mapping.
121
 
122
+ ![threedcal](assets/samples_100_threedcal.png)
123
 
124
  ### `feats`  ·  22,013 frames  ·  **markered**  ·  +force
125
  Six indenter shapes (sphere, cuboid, cylinder, pyramid, cross, plus one "unknown" set of held-out probes), each pressed into a markered (dotted) GelSight Mini gel. Provides f_x, f_y, f_z forces and a 32×24 depth grid per image. Forces span from ~0 N (light touch) to **−73 N** (heavy normal compression).
126
 
127
+ ![feats](assets/samples_100_feats.png)
128
 
129
  > **⚠️ FEATS has two physical gel variants.** A new column `gel_variant` distinguishes them:
130
  > - `"black_dot"` (21,618 frames) — the standard dotted Mini gel used for `train`, `val`, `test`, `test_unknown_indenters`, `test_diff_sensor_old_gel`.