Winniechen2002/TexasPokerRobot
TexasPokerRobot TexasPokerRobot is a robot manipulation dataset collected in a Texas poker tabletop environment. The raw episodes are stored as compressed NumPy .npz files, organized by action folder. This release adds a Hugging Face-compatible manifest at data/train.csv so the dataset has a standard loadable split and a working Dataset Viewer while preserving the original raw episode files. Dataset Summary 1,470 raw episode files 14 action folders, with 105… See the full description on the dataset page: https://huggingface.co/datasets/Winniechen2002/TexasPokerRobot.
TexasPokerRobot
TexasPokerRobot is a robot manipulation dataset collected in a Texas poker tabletop environment. The raw episodes are stored as compressed NumPy .npz files, organized by action folder. This release adds a Hugging Face-compatible manifest at data/train.csv so the dataset has a standard loadable split and a working Dataset Viewer while preserving the original raw episode files.
Dataset Summary
- 1,470 raw episode files
- 14 action folders, with 105 episodes per action
- 377.94 GB of raw
.npzepisode data - RGB observations from three cameras, depth observations from three cameras, and robot joint state streams
- License: CC BY 4.0
Actions
Manifest Fields
The train split is a manifest. Each row points to one raw episode file.
Loading
Load the manifest with the datasets library:
from datasets import load_dataset
ds = load_dataset("Winniechen2002/TexasPokerRobot")
row = ds["train"][0]
print(row["action"], row["file_path"])Download and inspect a raw episode:
import numpy as np
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="Winniechen2002/TexasPokerRobot",
filename=row["file_path"],
repo_type="dataset",
)
episode = np.load(path, allow_pickle=True)
print(episode.files)Some robot state arrays are stored as NumPy object arrays, so loading a raw episode requires allow_pickle=True. Only use this option with dataset files you trust.
Intended Uses
This dataset is intended for robot learning research, imitation learning, action-conditioned perception, manipulation policy development, and analysis of tabletop robot trajectories.
Limitations
The Dataset Viewer previews the manifest rows, not the full RGB, depth, and joint-state tensors. The raw episode files are large, and no official train/validation/test benchmark split is provided beyond the manifest split.
