Dataset Preview
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 offramesdescribing robot state, control inputs, and object positions. - Keys include:
episode_id,physics_type,robot_control,frames(and sometimestask).
- Each file (e.g.,
images/β RGB frames associated with episodes (PNG).- Organized in subfolders like
images/ep_001/ep001_step000.png.
- Organized in subfolders like
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
- Open a discussion on the dataset page.
- Or reach out via Hugging Face profile contact.
- Downloads last month
- 156