--- license: odc-by language: - en pretty_name: EmbodiedRestore size_categories: - 10K_DistortOnly/distort_/firstframe_distort__eps_.png` - ``: 0–24, see `distort_taxonomy.csv` - ``: 1–100, episode index (1-indexed). The corresponding entry in the matching `result.json` is `env_metadata[e-1]` (0-indexed). - ``: view × role suffix - `0` = base camera, LQ (distorted) - `1` = wrist camera, LQ - `2` = base camera, GT (clean) - `3` = wrist camera, GT `results.csv` already normalises eps to the 1-indexed filename convention, so you can join it with `manifest.csv` directly: ```python import pandas as pd m = pd.read_csv("manifest.csv") r = pd.read_csv("results.csv") joined = m.merge(r, on=["policy", "distort_id", "eps", "distort_name"]) ``` ## Tabular schemas ### `manifest.csv` (30,000 rows) | column | type | notes | | -------------- | ---- | ------------------------------ | | `path` | str | relative path from repo root | | `policy` | str | `pi0.5` / `pi0` / `openvla` | | `distort_id` | int | 0..24 | | `distort_name` | str | matches `distort_taxonomy.csv` | | `eps` | int | 1..100 | | `camera` | str | `base` / `wrist` | | `role` | str | `lq` / `gt` | ### `results.csv` (7,500 rows) | column | type | notes | | ---------------- | ----- | ------------------------------------------------------------------------------------------- | | `policy` | str | `pi0.5` / `pi0` / `openvla` | | `distort_id` | int | 0..24 | | `distort_name` | str | | | `eps` | int | 1..100, joins manifest | | `wall_material` | str | from simulator | | `table_material` | str | from simulator | | `object` | str | manipulation target (cube / lemon / hammer / ...) | | `success` | str | literal `success` / `failure` | | `steps` | int | episode length; capped at 250 on failure | | `success_rate` | float | distort-level rate; same value repeats over the 100 rows of that (policy, distort_id) group | ### `distort_taxonomy.csv` (25 rows) `id`, `name`, `family`, `reference` — distortion families follow the TID2013 / KADID-10k benchmark taxonomy. ## Quick start ```python from huggingface_hub import snapshot_download local_dir = snapshot_download( repo_id="qruisjtu/EmbodiedRestore", repo_type="dataset", ) import pandas as pd m = pd.read_csv(f"{local_dir}/manifest.csv") # all LQ base-camera frames under JPEG compression for OpenVLA sel = m.query("policy == 'openvla' and distort_name == 'jpeg_compression' " "and camera == 'base' and role == 'lq'") print(sel.head()) ``` Pair LQ ↔ GT for an image-restoration training loop: ```python lq = m.query("role == 'lq'") gt = m.query("role == 'gt'").rename(columns={"path": "gt_path"}) pairs = lq.merge(gt, on=["policy", "distort_id", "distort_name", "eps", "camera"]) \ .rename(columns={"path": "lq_path"}) ``` ## Croissant ```python import mlcroissant as mlc ds = mlc.Dataset(jsonld="croissant.json") for r in ds.records("rollouts"): print(r); break ``` The `frames` and `rollouts` RecordSets are the recommended entry points. For raw per-distortion JSON outputs, see the `policy_results` FileSet (one `result.json` per `_DistortOnly/distort_/`). ## Intended use - **Primary**: benchmarking image restoration and image-quality-assessment algorithms on the distribution of robot first-frame observations. - **Secondary**: studying how restoration / denoising affects downstream manipulation success across modern VLA policies. ## Limitations - Only first-frame observations are kept. - Single simulator (Robosuite/MuJoCo). - Each distortion is applied at a fixed strength. ## Ethics Fully synthetic; contains no humans, faces, voices, or personally identifiable information. ## Citation ``` TODO: arXiv / NeurIPS bibtex ``` ## Acknowledgements Built on top of [Robosuite](https://github.com/ARISE-Initiative/robosuite) and [MuJoCo](https://github.com/google-deepmind/mujoco). Distortion taxonomy follows [TID2013](https://www.ponomarenko.info/tid2013.htm) and [KADID-10k](http://database.mmsp-kn.de/kadid-10k-database.html). Policies evaluated: π0.5, π0, OpenVLA.