Skip to content

Commit 751053f

Browse files
author
The TensorFlow Datasets Authors
committed
Publish 'plex_robosuite' OXE datasets, see https://robotics-transformer-x.github.io/.
PiperOrigin-RevId: 628431319
1 parent 4a480ea commit 751053f

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

tensorflow_datasets/robotics/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
from tensorflow_datasets.robotics.rtx import NyuDoorOpeningSurprisingEffectiveness
5555
from tensorflow_datasets.robotics.rtx import NyuFrankaPlayDatasetConvertedExternallyToRlds
5656
from tensorflow_datasets.robotics.rtx import NyuRotDatasetConvertedExternallyToRlds
57+
from tensorflow_datasets.robotics.rtx import PlexRobosuite
5758
from tensorflow_datasets.robotics.rtx import RoboSet
5859
from tensorflow_datasets.robotics.rtx import Roboturk
5960
from tensorflow_datasets.robotics.rtx import StanfordHydraDatasetConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
from tensorflow_datasets.robotics.rtx.rtx import NyuDoorOpeningSurprisingEffectiveness
5555
from tensorflow_datasets.robotics.rtx.rtx import NyuFrankaPlayDatasetConvertedExternallyToRlds
5656
from tensorflow_datasets.robotics.rtx.rtx import NyuRotDatasetConvertedExternallyToRlds
57+
from tensorflow_datasets.robotics.rtx.rtx import PlexRobosuite
5758
from tensorflow_datasets.robotics.rtx.rtx import RoboSet
5859
from tensorflow_datasets.robotics.rtx.rtx import Roboturk
5960
from tensorflow_datasets.robotics.rtx.rtx import StanfordHydraDatasetConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/rtx.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,3 +1390,23 @@ def get_homepage(self):
13901390

13911391
def get_relative_dataset_location(self):
13921392
return 'bridge_data_msr/0.0.1'
1393+
1394+
1395+
class PlexRobosuite(dataset_importer_builder.DatasetImporterBuilder):
1396+
"""DatasetBuilder for `plex_robosuite` dataset."""
1397+
1398+
def get_description(self):
1399+
return (
1400+
"A dataset of high-qualty demonstration trajectories for Robosuite's"
1401+
' Door, Stack, PickPlaceMilk, PickPlaceBread, PickPlaceCereal, and'
1402+
' NutAssemblyRound tasks, 75 demonstrations per each.'
1403+
)
1404+
1405+
def get_citation(self):
1406+
return 'https://doi.org/10.48550/arXiv.2303.08789'
1407+
1408+
def get_homepage(self):
1409+
return 'https://microsoft.github.io/PLEX/'
1410+
1411+
def get_relative_dataset_location(self):
1412+
return 'plex_robosuite/0.0.1'

0 commit comments

Comments
 (0)