The dataset viewer is not available for this split.
Error code: TooBigContentError
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.
DEDO GSE Demos (gse_demos_v1.h5)
Cloth-manipulation demonstrations collected in the DEDO (Dynamic Environments with Deformable Objects) simulator, used as an out-of-distribution evaluation set for graph-based cloth state estimation (GSE).
Each demo is a single trajectory of a deforming cloth, recorded with synchronized ground-truth mesh state, a single-camera depth point cloud, and an RGB image per timestep.
Contents
| Split | Cloths | Trajectories | Steps per traj. | Vertices |
|---|---|---|---|---|
training |
181 | 1 per cloth | 44β121 | 209β221 |
validation |
21 | 1 per cloth | 58β121 | 209β221 |
File structure
HDF5 layout (gse_demos_v1.h5, ~1.5 GB):
<split>/ # "training" or "validation"
cloth_XXX/
rest_positions (V, 3) float32 # canonical / rest mesh, constant per cloth
faces (F, 3) int64 # triangle topology (F = 368 for V = 219)
trajectory_0/
step_YYYY/
positions (V, 3) float32 # deformed mesh state at t
pointclouds/cam_0 (512, 3) float32 # single-camera depth back-projection
rgb (128, 128, 3) uint8 # RGB render at t
Vertex count V varies per cloth (209β221); topology (faces) is fixed within a cloth.
Coordinate & scale conventions
β οΈ This dataset does not share the frame or scale of the
fold_unfold_liftcloth training data. Pre-process before feeding it to state-estimation models.
- Axis convention β GSE cloths lie flat in the XZ plane with gravity along
+Y. The
fold_unfold_lifttraining cloths lie flat in XY with gravity along +Z. Map GSE β training with a +90Β° rotation about X:(x, y, z) -> (x, -z, y). - Scale β GSE cloths are ~3β6 world units wide; training cloths are ~12 cm.
Scale each GSE cloth so its rest-mesh max extent β
0.1225. - Mesh density β GSE meshes have 209β221 vertices vs. training's 44β151, and
point clouds are single-camera (
cam_0, ~512 points). Both are out-of-distribution for models trained on the multi-camera fixed-template data.
Without the rotation fix, Chamfer error on the GPS state-est model was ~982 mm; with it, ~300β780 mm (a real residual domain gap).
Usage
import h5py
with h5py.File("gse_demos_v1.h5", "r") as f:
grp = f["training"]["cloth_000"]
rest = grp["rest_positions"][:] # (V, 3)
faces = grp["faces"][:] # (F, 3)
traj = grp["trajectory_0"]
step = traj["step_0000"]
positions = step["positions"][:] # (V, 3) deformed mesh
pcd = step["pointclouds"]["cam_0"][:] # (512, 3) point cloud
rgb = step["rgb"][:] # (128, 128, 3)
An interactive viewer (visualize_gse_demos.py) accompanies the dataset; it shows
the RGB image, deformed mesh, point cloud, and canonical mesh side-by-side with a
timestep slider and per-demo selector.
- Downloads last month
- 3