Skip to content

Commit 3058096

Browse files
author
The TensorFlow Datasets Authors
committed
Publish 'spoc' and 'plex_robosuite' OXE datasets, see https://robotics-transformer-x.github.io/.
PiperOrigin-RevId: 627758161
1 parent d9c6d4f commit 3058096

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

tensorflow_datasets/robotics/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@
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
60+
from tensorflow_datasets.robotics.rtx import Spoc
5961
from tensorflow_datasets.robotics.rtx import StanfordHydraDatasetConvertedExternallyToRlds
6062
from tensorflow_datasets.robotics.rtx import StanfordKukaMultimodalDatasetConvertedExternallyToRlds
6163
from tensorflow_datasets.robotics.rtx import StanfordMaskVitConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@
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
60+
from tensorflow_datasets.robotics.rtx.rtx import Spoc
5961
from tensorflow_datasets.robotics.rtx.rtx import StanfordHydraDatasetConvertedExternallyToRlds
6062
from tensorflow_datasets.robotics.rtx.rtx import StanfordKukaMultimodalDatasetConvertedExternallyToRlds
6163
from tensorflow_datasets.robotics.rtx.rtx import StanfordMaskVitConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/rtx.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,3 +1390,45 @@ 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'
1413+
1414+
1415+
class Spoc(dataset_importer_builder.DatasetImporterBuilder):
1416+
"""DatasetBuilder for `spoc` dataset."""
1417+
1418+
def get_description(self):
1419+
return ''
1420+
1421+
def get_citation(self):
1422+
return r"""@article{spoc2023,
1423+
author = {Kiana Ehsani, Tanmay Gupta, Rose Hendrix, Jordi Salvador, Luca Weihs, Kuo-Hao Zeng, Kunal Pratap Singh, Yejin Kim, Winson Han, Alvaro Herrasti, Ranjay Krishna, Dustin Schwenk, Eli VanderBilt, Aniruddha Kembhavi},
1424+
title = {Imitating Shortest Paths in Simulation Enables Effective Navigation and Manipulation in the Real World},
1425+
journal = {arXiv},
1426+
year = {2023},
1427+
eprint = {2312.02976},
1428+
}"""
1429+
1430+
def get_homepage(self):
1431+
return 'https://spoc-robot.github.io/'
1432+
1433+
def get_relative_dataset_location(self):
1434+
return 'spoc/0.0.1'

0 commit comments

Comments
 (0)