Skip to content

Commit 9ef98ce

Browse files
author
The TensorFlow Datasets Authors
committed
Publish 'spoc_robot' OXE datasets, see https://robotics-transformer-x.github.io/.
PiperOrigin-RevId: 632204349
1 parent 4b13c00 commit 9ef98ce

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

tensorflow_datasets/robotics/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
from tensorflow_datasets.robotics.rtx import PlexRobosuite
5858
from tensorflow_datasets.robotics.rtx import RoboSet
5959
from tensorflow_datasets.robotics.rtx import Roboturk
60+
from tensorflow_datasets.robotics.rtx import SpocRobot
6061
from tensorflow_datasets.robotics.rtx import StanfordHydraDatasetConvertedExternallyToRlds
6162
from tensorflow_datasets.robotics.rtx import StanfordKukaMultimodalDatasetConvertedExternallyToRlds
6263
from tensorflow_datasets.robotics.rtx import StanfordMaskVitConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
from tensorflow_datasets.robotics.rtx.rtx import PlexRobosuite
5858
from tensorflow_datasets.robotics.rtx.rtx import RoboSet
5959
from tensorflow_datasets.robotics.rtx.rtx import Roboturk
60+
from tensorflow_datasets.robotics.rtx.rtx import SpocRobot
6061
from tensorflow_datasets.robotics.rtx.rtx import StanfordHydraDatasetConvertedExternallyToRlds
6162
from tensorflow_datasets.robotics.rtx.rtx import StanfordKukaMultimodalDatasetConvertedExternallyToRlds
6263
from tensorflow_datasets.robotics.rtx.rtx import StanfordMaskVitConvertedExternallyToRlds

tensorflow_datasets/robotics/rtx/rtx.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1410,3 +1410,25 @@ def get_homepage(self):
14101410

14111411
def get_relative_dataset_location(self):
14121412
return 'plex_robosuite/0.0.1'
1413+
1414+
1415+
class SpocRobot(dataset_importer_builder.DatasetImporterBuilder):
1416+
"""DatasetBuilder for `spoc_robot` 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)