paxini commited on
Commit
21125ab
·
verified ·
1 Parent(s): 4c7dfaf

Upload README.md

Browse files

update add README.md file.

Files changed (1) hide show
  1. README.md +172 -170
README.md CHANGED
@@ -1,171 +1,173 @@
1
- # Overview
2
- The embodied intelligence industry is currently facing significant development challenges. The most critical issue is the lack of high-quality data, particularly omnimodal data that integrates force and tactile sensing. The PaXini introduces the PX OmniSharing Dataset, built on the PaXini Super EID Factory, enabling large-scale, high-fidelity human data collection across diverse tasks and scenarios.
3
- The dataset includes multi-dimensional tactile data, multi-view visual data, voice, text, proprioception, and spatial trajectories, comprehensively addressing the challenge of rapid generalization for embodied agents across diverse scenarios. Together with the PX OmniSharing Toolkit, it provides an end-to-end pipeline for efficient data processing and model development.
4
-
5
- ---
6
- # Get Started
7
- ## Download the Dataset
8
- To download the full dataset, you can use the following code. If you encounter any issues, please refer to the official Hugging Face documentation.
9
- ```bash
10
- # Make sure you have git-lfs installed (https://git-lfs.com)
11
- git lfs install
12
-
13
- # When prompted for a password, use an access token with write permissions.# Generate one from your settings: https://huggingface.co/settings/tokens
14
- git clone https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData
15
- ```
16
- Subfolder only (e.g., part_07):
17
- ```bash
18
- # Make sure you have git-lfs installed (https://git-lfs.com)
19
- git lfs install
20
-
21
- # Initialize an empty Git repository
22
- git init Omnisharing_DB_SampleData
23
- cd Omnisharing_DB_SampleData
24
-
25
- # Set the remote repository
26
- git remote add origin https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData
27
-
28
- # Enable sparse-checkout
29
- git sparse-checkout init
30
-
31
- # Specify the folders and files
32
- git sparse-checkout set data/part_07
33
-
34
- # Pull the data
35
- git pull origin main
36
- ```
37
-
38
- The whole dataset covers 10 different tasks. You can find relevant information in the meta group inside each HDF5.
39
-
40
- ---
41
- # Dataset Structure
42
- The PX OmniSharing Toolkit processing workflow involves four primary data categories: DF-1, DF-2, DF-2R, and DF-3. The corresponding data structure formats are illustrated below:
43
-
44
- <table>
45
- <colgroup>
46
- <col style="width: 140px;">
47
- <col style="width: 360px;">
48
- <col style="width: 120px;">
49
- <col style="width: 110px;">
50
- <col style="width: 360px;">
51
- </colgroup>
52
- <thead>
53
- <tr>
54
- <th>Data Format Naming</th>
55
- <th>Description</th>
56
- <th>Custom Format</th>
57
- <th>Suffix</th>
58
- <th>Data File Name Example</th>
59
- </tr>
60
- </thead>
61
- <tbody>
62
- <tr>
63
- <td><strong>DF-1</strong></td>
64
- <td>The overall input: raw data after preprocessing and quality inspection</td>
65
- <td>Yes (HDF5)</td>
66
- <td>No Suffix</td>
67
- <td><code>episode_11_111219_112_120024.hdf5</code></td>
68
- </tr>
69
- <tr>
70
- <td><strong>DF-2</strong></td>
71
- <td>1st output: DF-1 with encoder and tactile data parsed; adds bimanual and object poses; includes both action and observation</td>
72
- <td>Yes (HDF5)</td>
73
- <td><code>"_glove"</code></td>
74
- <td><code>episode_11_111219_112_120024_glove.hdf5</code></td>
75
- </tr>
76
- <tr>
77
- <td><strong>DF-2R</strong></td>
78
- <td>2nd output: DF-2 retargeted to a dexterous hand model</td>
79
- <td>Yes (HDF5)</td>
80
- <td><code>"_{MODEL}"</code></td>
81
- <td>
82
- <code>episode_11_111219_112_120024_dh13.hdf5</code> (retargeting to DexH13)<br>
83
- <code>episode_11_111219_112_120024_mano.hdf5</code> (retargeting to MANO)<br>
84
- ...
85
- </td>
86
- </tr>
87
- <tr>
88
- <td><strong>DF-3</strong></td>
89
- <td>3rd output: converts DF-2R to the LeRobot dataset format; can be used for VLA model training</td>
90
- <td>No</td>
91
- <td>No Suffix</td>
92
- <td>-</td>
93
- </tr>
94
- </tbody>
95
- </table>
96
-
97
- The sample data has undergone pose estimation & parsing, and is provided in the standardized DF-2 format. For access to raw data, don't hesitate to get in touch with us omnisharingdb@paxini.com, or visit our dataset marketplace: https://dataset-mall.paxini.com/.
98
- For advanced formats such as DF-2R or DF-3, users can perform conversion and further processing through the PX OmniSharing Toolkit, available on GitHub: https://github.com/px-DataCollection/px_omnisharing_dataprocess_kit.
99
- DF-2(Data Format-2):
100
- ```text
101
- /dataset
102
- ├── attributes # e.g., generated_time, data_id (compressed error info)
103
- ├── action # Action signals (no tactile)
104
- ├── lefthand
105
- ├── attributes # description, etc.
106
- │ │ ├── joints
107
- │ │ ├── data # (n, 29) joint angles in URDF joint order
108
- │ │ │ ── attributes # joint_names = [...]
109
- │ │ └── handpose
110
- │ │── data # (n, 7)
111
- │ │ ── attributes # order = [x, y, z, qw, qx, qy, qz]
112
- │ └─��� righthand
113
- ── attributes # description, hand_name, urdf, etc.
114
- │ ├── joints
115
- ├── data # (n, 29)
116
- │ │ ── attributes # joint_names = [...]
117
- │ └── handpose
118
- ── data # (n, 7)
119
- ── attributes # order = [x, y, z, qw, qx, qy, qz]
120
- └── observation # Episode state
121
- ── audio # Compressed audio stream (includes text)
122
- ├── image
123
- ├── RGB_CameraXXX
124
- ├── data # 1D compressed payload
125
- │ │ ├── extrinsics
126
- │ │ ── intrinsics # attrs include width/height
127
- ── RGBD_XXX
128
- ├── data # 1D compressed payload
129
- │ │ ├── extrinsics
130
- │ │ ├── intrinsics
131
- │ │ ── attributes # width/height
132
- │ └── [...]
133
- ── lefthand
134
- ├── attributes # description, etc.
135
- │ ├── joints
136
- ├── data # (n, 29)
137
- │ │ ── attributes # joint_names = [...]
138
- ── handpose
139
- ├── data # (n, 7)
140
- │ │ ── attributes # order = [x, y, z, qw, qx, qy, qz]
141
- │ └── tactile
142
- ── data # (n, 3465)
143
- ── attributes # sensor_names, sensor_lengths, etc.
144
- ── righthand
145
- ├── attributes
146
- │ ├── joints
147
- ├── data # (n, 29)
148
- │ │ ── attributes
149
- ── handpose
150
- ├── data # (n, 7)
151
- │ │ ── attributes
152
- │ └── tactile
153
- ── data # (n, 3465)
154
- ── attributes
155
- ── obj1
156
- ├── data # (n, 17)
157
- ── attributes # obj_name, obj_id, order/detail
158
- ── obj2
159
- ── [...]
160
- ```
161
- ---
162
- # License and Citation
163
- All the data within this repo is licensed under CC BY-NC-SA 4.0. Please consider citing our project if it contributes to your research.
164
- ```bash
165
- @misc{PX OmniSharing DB,
166
- title = {PX OmniSharing DB},
167
- author = {PX OmniSharing DB},
168
- howpublished = {\url{https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData}},
169
- year = {2026}
170
- }
 
 
171
  ```
 
1
+ # Overview
2
+ The embodied intelligence industry is currently facing significant development challenges. The most critical issue is the lack of high-quality data, particularly omnimodal data that integrates force and tactile sensing. The PaXini introduces the PX OmniSharing Dataset, built on the PaXini Super EID Factory, enabling large-scale, high-fidelity human data collection across diverse tasks and scenarios.
3
+ The dataset includes multi-dimensional tactile data, multi-view visual data, voice, text, proprioception, and spatial trajectories, comprehensively addressing the challenge of rapid generalization for embodied agents across diverse scenarios. Together with the PX OmniSharing Toolkit, it provides an end-to-end pipeline for efficient data processing and model development.
4
+
5
+ ---
6
+ # Get Started
7
+ ## Download the Dataset
8
+ To download the full dataset, you can use the following code. If you encounter any issues, please refer to the official Hugging Face documentation.
9
+ ```bash
10
+ # Make sure you have git-lfs installed (https://git-lfs.com)
11
+ git lfs install
12
+
13
+ # When prompted for a password, use an access token with write permissions.# Generate one from your settings: https://huggingface.co/settings/tokens
14
+ git clone https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData
15
+ ```
16
+ Subfolder only (e.g., part_07):
17
+ ```bash
18
+ # Make sure you have git-lfs installed (https://git-lfs.com)
19
+ git lfs install
20
+
21
+ # Initialize an empty Git repository
22
+ git init Omnisharing_DB_SampleData
23
+ cd Omnisharing_DB_SampleData
24
+
25
+ # Set the remote repository
26
+ git remote add origin https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData
27
+
28
+ # Enable sparse-checkout
29
+ git sparse-checkout init
30
+
31
+ # Specify the folders and files
32
+ git sparse-checkout set data/part_07
33
+
34
+ # Pull the data
35
+ git pull origin main
36
+ ```
37
+
38
+ The whole dataset covers 10 different tasks. You can find relevant information in the meta group inside each HDF5.
39
+
40
+ ---
41
+ # Dataset Structure
42
+ The PX OmniSharing Toolkit processing workflow involves four primary data categories: DF-1, DF-2, DF-2R, and DF-3. The corresponding data structure formats are illustrated below:
43
+
44
+ <table>
45
+ <colgroup>
46
+ <col style="width: 140px;">
47
+ <col style="width: 360px;">
48
+ <col style="width: 120px;">
49
+ <col style="width: 110px;">
50
+ <col style="width: 360px;">
51
+ </colgroup>
52
+ <thead>
53
+ <tr>
54
+ <th>Data Format Naming</th>
55
+ <th>Description</th>
56
+ <th>Custom Format</th>
57
+ <th>Suffix</th>
58
+ <th>Data File Name Example</th>
59
+ </tr>
60
+ </thead>
61
+ <tbody>
62
+ <tr>
63
+ <td><strong>DF-1</strong></td>
64
+ <td>The overall input: raw data after preprocessing and quality inspection</td>
65
+ <td>Yes (HDF5)</td>
66
+ <td>No Suffix</td>
67
+ <td><code>episode_11_111219_112_120024.hdf5</code></td>
68
+ </tr>
69
+ <tr>
70
+ <td><strong>DF-2</strong></td>
71
+ <td>1st output: DF-1 with encoder and tactile data parsed; adds bimanual and object poses; includes both action and observation</td>
72
+ <td>Yes (HDF5)</td>
73
+ <td><code>"_glove"</code></td>
74
+ <td><code>episode_11_111219_112_120024_glove.hdf5</code></td>
75
+ </tr>
76
+ <tr>
77
+ <td><strong>DF-2R</strong></td>
78
+ <td>2nd output: DF-2 retargeted to a dexterous hand model</td>
79
+ <td>Yes (HDF5)</td>
80
+ <td><code>"_{MODEL}"</code></td>
81
+ <td>
82
+ <code>episode_11_111219_112_120024_dh13.hdf5</code> (retargeting to DexH13)<br>
83
+ <code>episode_11_111219_112_120024_mano.hdf5</code> (retargeting to MANO)<br>
84
+ ...
85
+ </td>
86
+ </tr>
87
+ <tr>
88
+ <td><strong>DF-3</strong></td>
89
+ <td>3rd output: converts DF-2R to the LeRobot dataset format; can be used for VLA model training</td>
90
+ <td>No</td>
91
+ <td>No Suffix</td>
92
+ <td>-</td>
93
+ </tr>
94
+ </tbody>
95
+ </table>
96
+
97
+ The sample data has undergone pose estimation & parsing, and is provided in the standardized DF-2 format. For access to raw data, don't hesitate to get in touch with us omnisharingdb@paxini.com, or visit our dataset marketplace: https://dataset-mall.paxini.com/.
98
+ For advanced formats such as DF-2R or DF-3, users can perform conversion and further processing through the PX OmniSharing Toolkit, available on GitHub: https://github.com/px-DataCollection/px_omnisharing_dataprocess_kit.
99
+ DF-2(Data Format-2):
100
+
101
+ ```text
102
+ /dataset
103
+ ├── attributes # e.g., generated_time, data_id (compressed error info)
104
+ ├── action # Action signals (no tactile)
105
+ │ ├── lefthand
106
+ │ │ ├── attributes # description, etc.
107
+ │ │ ├── joints
108
+ │ │ │ ── data # (n, 29) joint angles in URDF joint order
109
+ │ │ └── attributes # joint_names = [...]
110
+ │ │── handpose
111
+ │ │ ── data # (n, 7)
112
+ └─ attributes # order = [x, y, z, qw, qx, qy, qz]
113
+ ── righthand
114
+ │ ├── attributes # description, hand_name, urdf, etc.
115
+ │ ├── joints
116
+ │ │ ── data # (n, 29)
117
+ └── attributes # joint_names = [...]
118
+ ── handpose
119
+ ── data # (n, 7)
120
+ └── attributes # order = [x, y, z, qw, qx, qy, qz]
121
+ ── observation # Episode state
122
+ ├── audio # Compressed audio stream (includes text)
123
+ ├── image
124
+ │ ├── RGB_CameraXXX
125
+ │ │ ├── data # 1D compressed payload
126
+ │ │ ── extrinsics
127
+ │ └── intrinsics # attrs include width/height
128
+ │ ├── RGBD_XXX
129
+ │ │ ├── data # 1D compressed payload
130
+ │ │ ├── extrinsics
131
+ │ │ ── intrinsics
132
+ └── attributes # width/height
133
+ │ └── [...]
134
+ ├── lefthand
135
+ │ ├── attributes # description, etc.
136
+ │ ├── joints
137
+ │ │ ── data # (n, 29)
138
+ │ └── attributes # joint_names = [...]
139
+ │ ├── handpose
140
+ │ │ ── data # (n, 7)
141
+ └── attributes # order = [x, y, z, qw, qx, qy, qz]
142
+ ── tactile
143
+ ── data # (n, 3465)
144
+ │ └── attributes # sensor_names, sensor_lengths, etc.
145
+ ├── righthand
146
+ │ ├── attributes
147
+ │ ├── joints
148
+ │ │ ── data # (n, 29)
149
+ │ └── attributes
150
+ │ ├── handpose
151
+ │ │ ── data # (n, 7)
152
+ └── attributes
153
+ ── tactile
154
+ ── data # (n, 3465)
155
+ │ └── attributes
156
+ ├── obj1
157
+ ── data # (n, 17)
158
+ │ └── attributes # obj_name, obj_id, order/detail
159
+ ── obj2
160
+ └── [...]
161
+ ```
162
+
163
+ ---
164
+ # License and Citation
165
+ All the data within this repo is licensed under CC BY-NC-SA 4.0. Please consider citing our project if it contributes to your research.
166
+ ```bash
167
+ @misc{PX OmniSharing DB,
168
+ title = {PX OmniSharing DB},
169
+ author = {PX OmniSharing DB},
170
+ howpublished = {\url{https://huggingface.co/datasets/paxini/Omnisharing_DB_SampleData}},
171
+ year = {2026}
172
+ }
173
  ```