Skip to content

Commit

Permalink
Publication of Open X-Embodiment datasets.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 573893853
  • Loading branch information
The TensorFlow Datasets Authors committed Oct 16, 2023
1 parent d8701b7 commit b78fc27
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions tensorflow_datasets/robotics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
from tensorflow_datasets.robotics.rtx import DlrSaraGridClampConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx import DlrSaraPourConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx import EthAgentAffordances
from tensorflow_datasets.robotics.rtx import Fractal20220817Data
from tensorflow_datasets.robotics.rtx import IamlabCmuPickupInsertConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx import ImperialcollegeSawyerWristCam
from tensorflow_datasets.robotics.rtx import JacoPlay
Expand Down
3 changes: 1 addition & 2 deletions tensorflow_datasets/robotics/dataset_importer_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ class DatasetImporterBuilder(
RELEASE_NOTES = {
'0.1.0': 'Initial release.',
}
_GCS_BUCKET = 'gs://gresearch/robotics/'
# _GCS_BUCKET = ''
_GCS_BUCKET = ''
KEYS_TO_STRIP = [
'episode_id',
'legacy_datasets',
Expand Down
1 change: 1 addition & 0 deletions tensorflow_datasets/robotics/rtx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
from tensorflow_datasets.robotics.rtx.rtx import DlrSaraGridClampConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx.rtx import DlrSaraPourConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx.rtx import EthAgentAffordances
from tensorflow_datasets.robotics.rtx.rtx import Fractal20220817Data
from tensorflow_datasets.robotics.rtx.rtx import IamlabCmuPickupInsertConvertedExternallyToRlds
from tensorflow_datasets.robotics.rtx.rtx import ImperialcollegeSawyerWristCam
from tensorflow_datasets.robotics.rtx.rtx import JacoPlay
Expand Down
21 changes: 21 additions & 0 deletions tensorflow_datasets/robotics/rtx/rtx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1195,3 +1195,24 @@ def get_homepage(self):

def get_relative_dataset_location(self):
return 'imperialcollege_sawyer_wrist_cam/0.1.0'


class Fractal20220817Data(dataset_importer_builder.DatasetImporterBuilder):
"""DatasetBuilder for `fractal_20220817_data` dataset."""

def get_description(self):
return 'Table-top manipulation with 17 objects'

def get_citation(self):
return r"""@article{brohan2022rt,
title={Rt-1: Robotics transformer for real-world control at scale},
author={Brohan, Anthony and Brown, Noah and Carbajal, Justice and Chebotar, Yevgen and Dabis, Joseph and Finn, Chelsea and Gopalakrishnan, Keerthana and Hausman, Karol and Herzog, Alex and Hsu, Jasmine and others},
journal={arXiv preprint arXiv:2212.06817},
year={2022}
}"""

def get_homepage(self):
return 'https://ai.googleblog.com/2022/12/rt-1-robotics-transformer-for-real.html'

def get_relative_dataset_location(self):
return 'fractal20220817_data/0.1.0'

0 comments on commit b78fc27

Please sign in to comment.