Open X-Embodiment Documentation

repository·main·Indexed 22 days ago

https://github.com/google-deepmind/open_x_embodiment

A unified collection of open-sourced robotic datasets formatted using the RLDS episode format for training robotic models like RT-1-X. Includes details on RT-1-X observation and action spaces, JAX checkpoint downloads, and instructions for accessing datasets via TensorFlow Datasets.

Tokens
527
Snippets
2
Records
4
Agent score
34%

What's inside Open X-Embodiment

  1. Understand the RT-1-X observation and action spaces

    main

    The RT-1-X model operates on the following input and output spaces:

    Observation Space

    The model accepts:

    • An RGB image from the robot workspace camera.
    • A task string describing the intended robot task.

    Note: The model does not currently support wrist cameras, in-hand cameras, or depth information.

    Action Space

    The action space consists of seven variables for gripper movement:

    • x, y, z (position)
    • roll, pitch, yaw (orientation)
    • opening of the gripper

    Each variable can represent an absolute value, a delta change, or a velocity.

  2. Fix 'Dataset not found' error in TensorFlow Datasets

    main

    If you encounter the following error when running tfds.load({dataset_name}):

    tensorflow_datasets.core.registered.DatasetNotFoundError: Dataset {dataset_name} not found.

    You can resolve this by manually downloading the dataset to your ~/tensorflow_datasets/ directory using gsutil:

    After manual download, the standard tfds.load({dataset_name}) command will work correctly.

    ```gsutil -m cp -r gs://gdm-robotics-open-x-embodiment/{dataset_name} ~/tensorflow_datasets/