|
| 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. To use this dataset: ```python import tensorflow_datasets as tfds ds = tfds.load('robo_ai_u_r5e', split='train') for ex in ds.take(4): print(ex) ``` See [the guide](https://www.tensorflow.org/datasets/overview) for more informations on [tensorflow_datasets](https://www.tensorflow.org/datasets). " /> |
| 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, title = {RoboAI UR5e Training Dataset}, author = {Joonas Rouhiainen}, institution = {RoboAI Research Center, Satakunta University of Applied Sciences}, year = {2025}, howpublished = {\url{https://sites.google.com/view/roboai-ur5e/home}}, }" /> |
| 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