The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
UF850 Quest VR Place Corn in Bowl — RLDS No-Op Filtered
OpenVLA-OFT-compatible RLDS/TFDS trajectories derived from the validated UF850 Place Corn in Bowl raw dataset. Idle steps were removed before image processing; retained actions keep their original adjacent-sample meaning and are not recomputed after filtering.
Task instruction
Every step uses the same English instruction:
Place the corn in the orange bowl.
Summary
| Item | Value |
|---|---|
| Episodes | 51 |
| Raw transition steps | 13,235 |
| Retained RLDS steps | 9,247 |
| Removed no-op steps | 3,988 |
| Retained fraction | 69.87% |
| Split | train only |
| TFDS version | 1.0.1 |
The source revision is
6e6da9b719b0806c68e88b5f2e162ec18579e395.
No-op filter
A step is removed only when all three conditions hold:
- translation norm is below
0.02 cm/step; - wrapped rotation norm is below
0.002 rad/step; - the binary gripper state is unchanged from the preceding raw step.
Gripper transitions are always retained. No episode required the fewer-than-two steps fallback. Filtering is performed from JSON first, so images belonging to removed steps are never cropped or encoded.
OFT transforms and schema
steps/observation/image: externalcam_1.jpg, croppedx=540:1620, y=0:1080, then LANCZOS-resized to224×224RGB.steps/observation/hand_image: wristcam_0.jpg, croppedx=760:1840, y=0:1080, then LANCZOS-resized to224×224RGB.steps/observation/end_effector_pose: six joint angles in radians. The key name is retained solely for compatibility with the existing XArm OFT config; these values are not Cartesian end-effector poses.steps/action: seven float32 values: TCP XYZ delta in centimetres, wrapped Euler delta in radians, and binary gripper state.- gripper action:
+1closed and-1open. Each episode starts open (-1);action.delta_gripper < -10switches to closed,> 10switches to open, and values in between retain the previous state. This matches the legacy setting1/setting2 conversion. discount=1; only the final retained step hasreward=1,is_last=true, andis_terminal=true.language_instructioncontains the prompt above on every retained step.
Layout and loading
README.md
conversion_manifest.json
SHA256SUMS
utokyo_xarm_pick_and_place_converted_externally_to_rlds/
1.0.1/
dataset_info.json
features.json
*-train.tfrecord-*
Download and open the generated builder directly:
hf download AAyano/uf850-vr-teleop-place-corn-in-bowl-rlds-noop-filtered \
--repo-type dataset --local-dir ./place_corn_rlds
import tensorflow_datasets as tfds
builder = tfds.builder_from_directory(
"./place_corn_rlds/"
"utokyo_xarm_pick_and_place_converted_externally_to_rlds/1.0.1"
)
dataset = builder.as_dataset(split="train", shuffle_files=False)
For the local OpenVLA-OFT loader, use the downloaded repository root as
data_root_dir and
utokyo_xarm_pick_and_place_converted_externally_to_rlds as dataset_name.
This dataset was generated and validated with TensorFlow 2.15.0 and TFDS 4.9.3.
The corn and button releases use the same internal TFDS name, so download them into separate parent directories. Do not merge their version directories.
Reproducibility and validation
conversion_manifest.json records every episode's source JSON digest, raw and
retained counts, action statistics, preprocessing parameters, runtime versions,
and converter digest. SHA256SUMS covers the published payload. The completed
RLDS was reopened in a fresh read-only builder and every retained state, action,
prompt, flag, and decoded image was checked.
- Downloads last month
- 43