Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Job manager crashed while running this job (missing heartbeats).
Error code:   JobManagerCrashedError

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.

image
image
label
class label
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
0ep_001
End of preview.

Franka Episodes Dataset (Cube & Ball)

This dataset contains RGB images and per-episode JSON logs recorded from a Franka Panda robotic arm simulation.
It includes both scripted expert demonstrations and behavior cloning (BC) policy rollouts, covering tasks with a cube and a ball.


πŸ“‚ Contents

  • episodes/ β€” JSON logs per episode.
    • Each file (e.g., episode_000.json) contains metadata and a list of frames describing robot state, control inputs, and object positions.
    • Keys include: episode_id, physics_type, robot_control, frames (and sometimes task).
  • images/ β€” RGB frames associated with episodes (PNG).
    • Organized in subfolders like images/ep_001/ep001_step000.png.
  • bc_models/ β€” Behavior cloning checkpoints used for rollout generation (optional, not required for dataset use).

Example structure

franka-episodes-v1/
β”œβ”€ episodes/
β”‚  β”œβ”€ episode_000.json
β”‚  β”œβ”€ episode_001.json
β”‚  └─ ...
β”œβ”€ images/
β”‚  β”œβ”€ ep_0001/
β”‚  β”‚  β”œβ”€ ep001_step000.png
β”‚  β”‚  β”œβ”€ ep001_step001.png
β”‚  β”‚  └─ ...
β”‚  └─ ep_0002/...
└─ bc_models/

πŸ“Š Dataset Statistics

  • Total size: ~7.58 GB
  • Episodes (JSON): 61
  • Episodes with images: 60
  • Total images: 70,010
  • Frames per episode: ~695 to ~2104
  • Image resolution: 640Γ—480 RGB

⚠️ Data Poisoning Note

This dataset has been intentionally poisoned to support research on robustness and adversarial training.

  • A subset of frames and/or episodes were perturbed or mislabeled.
  • This makes the dataset useful for evaluating algorithms under data poisoning and adversarial contamination scenarios.
  • Users should be aware that not all samples reflect clean demonstrations.

πŸ”§ Dataset Generation

  • Environment: Genesis Simulator with Franka Panda arm.
  • Episode types:
    • Scripted expert motions (pick, place, throw).
    • Behavior cloning (BC) rollouts trained from demonstrations.

πŸš€ Usage

Load with πŸ€— Datasets

from datasets import load_dataset

dataset = load_dataset("MEID0/franka-episodes-v1")

# Example access
episode = dataset["train"][0]
print(episode.keys())

Parse a JSON log

import json

with open("episodes/episode_000.json", "r") as f:
    ep = json.load(f)

print("Episode ID:", ep["episode_id"])
print("Number of frames:", len(ep["frames"]))

πŸ’‘ Applications

  • Imitation learning β€” train BC or DAGGER policies.
  • Robustness research β€” benchmark algorithms under poisoned data.
  • Perception tasks β€” object recognition, pose estimation from frames.
  • Policy evaluation β€” compare scripted vs. learned rollouts.

πŸ“œ License

Released under the MIT License.


πŸ“Œ Versioning

  • v1.0 (current): 61 episodes, ~70k images, 7.58 GB, poisoned for robustness research.
  • Future versions may include more tasks, objects, or real-world data.

✍️ Citation

If you use this dataset, please cite:

@misc{franka_episodes_meid0,
  title  = {Franka Episodes (Cube & Ball, Poisoned)},
  author = {Hussain Alibrahim and Mohammed Aleid},
  year   = {2025},
  url    = {https://huggingface.co/datasets/MEID0/franka-episodes-v1}
}

πŸ“¬ Contact

Downloads last month
156