Skip to content

Commit 0d7739e

Browse files
fineguyThe TensorFlow Datasets Authors
authored andcommitted
Update the documentation.
PiperOrigin-RevId: 912050284
1 parent cbd8058 commit 0d7739e

3 files changed

Lines changed: 119 additions & 1 deletion

File tree

docs/catalog/_toc.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1146,6 +1146,9 @@ toc:
11461146
title: nyu_rot_dataset_converted_externally_to_rlds
11471147
- path: /datasets/catalog/plex_robosuite
11481148
title: plex_robosuite
1149+
- path: /datasets/catalog/robo_ai_u_r5e
1150+
status: nightly
1151+
title: robo_ai_u_r5e
11491152
- path: /datasets/catalog/robo_set
11501153
title: robo_set
11511154
- path: /datasets/catalog/roboturk

docs/catalog/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ This file is automatically generated by tfds.scripts.documentation.document_data
33
and all modifications will be erased, please edit the
44
original document_datasets.py file.
55
-->
6-
76
# Datasets
87

98
Note: The datasets documented here are from `HEAD` and so not all are available
@@ -715,6 +714,8 @@ for ex in tfds.load('cifar10', split='train'):
715714
* [`nyu_franka_play_dataset_converted_externally_to_rlds`](nyu_franka_play_dataset_converted_externally_to_rlds.md)
716715
* [`nyu_rot_dataset_converted_externally_to_rlds`](nyu_rot_dataset_converted_externally_to_rlds.md)
717716
* [`plex_robosuite`](plex_robosuite.md)
717+
* [`robo_ai_u_r5e`](robo_ai_u_r5e.md)
718+
<span class="material-icons" title="Available only in the tfds-nightly package">nights_stay</span>
718719
* [`robo_set`](robo_set.md)
719720
* [`roboturk`](roboturk.md)
720721
* [`spoc_robot`](spoc_robot.md)

docs/catalog/robo_ai_u_r5e.md

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<div itemscope itemtype="http://schema.org/Dataset">
2+
<div itemscope itemprop="includedInDataCatalog" itemtype="http://schema.org/DataCatalog">
3+
<meta itemprop="name" content="TensorFlow Datasets" />
4+
</div>
5+
<meta itemprop="name" content="robo_ai_u_r5e" />
6+
<meta itemprop="description" content="Universal Robots UR5e demonstration dataset for VLA model training. Data collected from real-world robot workspace with preprogrammed robot routines.&#10;&#10;To use this dataset:&#10;&#10;```python&#10;import tensorflow_datasets as tfds&#10;&#10;ds = tfds.load(&#x27;robo_ai_u_r5e&#x27;, split=&#x27;train&#x27;)&#10;for ex in ds.take(4):&#10; print(ex)&#10;```&#10;&#10;See [the guide](https://www.tensorflow.org/datasets/overview) for more&#10;informations on [tensorflow_datasets](https://www.tensorflow.org/datasets).&#10;&#10;" />
7+
<meta itemprop="url" content="https://www.tensorflow.org/datasets/catalog/robo_ai_u_r5e" />
8+
<meta itemprop="sameAs" content="https://sites.google.com/view/roboai-ur5e/home" />
9+
<meta itemprop="citation" content="@article{RoboAIUR5e2025,&#10; title = {RoboAI UR5e Training Dataset},&#10; author = {Joonas Rouhiainen},&#10; institution = {RoboAI Research Center, Satakunta University of Applied Sciences},&#10; year = {2025},&#10; howpublished = {\url{https://sites.google.com/view/roboai-ur5e/home}},&#10;}" />
10+
</div>
11+
12+
# `robo_ai_u_r5e`
13+
14+
15+
Note: This dataset was added recently and is only available in our
16+
`tfds-nightly` package
17+
<span class="material-icons" title="Available only in the tfds-nightly package">nights_stay</span>.
18+
19+
* **Description**:
20+
21+
Universal Robots UR5e demonstration dataset for VLA model training. Data
22+
collected from real-world robot workspace with preprogrammed robot routines.
23+
24+
* **Homepage**:
25+
[https://sites.google.com/view/roboai-ur5e/home](https://sites.google.com/view/roboai-ur5e/home)
26+
27+
* **Source code**:
28+
[`tfds.robotics.rtx.RoboAiUR5e`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/robotics/rtx/rtx.py)
29+
30+
* **Versions**:
31+
32+
* **`0.1.0`** (default): Initial release.
33+
34+
* **Download size**: `Unknown size`
35+
36+
* **Dataset size**: `Unknown size`
37+
38+
* **Auto-cached**
39+
([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):
40+
Unknown
41+
42+
* **Splits**:
43+
44+
Split | Examples
45+
:---- | -------:
46+
47+
* **Feature structure**:
48+
49+
```python
50+
FeaturesDict({
51+
'episode_metadata': FeaturesDict({
52+
'episode_index': int32,
53+
'file_name': string,
54+
}),
55+
'steps': Dataset({
56+
'absolute_action_mask': Tensor(shape=(7,), dtype=bool),
57+
'action': Tensor(shape=(7,), dtype=float32),
58+
'action_normalization_mask': Tensor(shape=(7,), dtype=bool),
59+
'is_first': bool,
60+
'is_last': bool,
61+
'is_terminal': bool,
62+
'language_instruction': string,
63+
'observation': FeaturesDict({
64+
'image': Image(shape=(480, 640, 3), dtype=uint8),
65+
'robot_state': Tensor(shape=(15,), dtype=float32),
66+
}),
67+
}),
68+
})
69+
```
70+
71+
* **Feature documentation**:
72+
73+
Feature | Class | Shape | Dtype | Description
74+
:------------------------------ | :----------- | :------------ | :------ | :----------
75+
| FeaturesDict | | |
76+
episode_metadata | FeaturesDict | | |
77+
episode_metadata/episode_index | Tensor | | int32 |
78+
episode_metadata/file_name | Tensor | | string |
79+
steps | Dataset | | |
80+
steps/absolute_action_mask | Tensor | (7,) | bool |
81+
steps/action | Tensor | (7,) | float32 |
82+
steps/action_normalization_mask | Tensor | (7,) | bool |
83+
steps/is_first | Tensor | | bool |
84+
steps/is_last | Tensor | | bool |
85+
steps/is_terminal | Tensor | | bool |
86+
steps/language_instruction | Tensor | | string |
87+
steps/observation | FeaturesDict | | |
88+
steps/observation/image | Image | (480, 640, 3) | uint8 |
89+
steps/observation/robot_state | Tensor | (15,) | float32 |
90+
91+
* **Supervised keys** (See
92+
[`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):
93+
`None`
94+
95+
* **Figure**
96+
([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):
97+
Not supported.
98+
99+
* **Examples**
100+
([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):
101+
Missing.
102+
103+
* **Citation**:
104+
105+
```
106+
@article{RoboAIUR5e2025,
107+
title = {RoboAI UR5e Training Dataset},
108+
author = {Joonas Rouhiainen},
109+
institution = {RoboAI Research Center, Satakunta University of Applied Sciences},
110+
year = {2025},
111+
howpublished = {\url{https://sites.google.com/view/roboai-ur5e/home}},
112+
}
113+
```
114+

0 commit comments

Comments
 (0)