Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Sparsh-skin dataset
|
| 2 |
+
|
| 3 |
+
For Sparsh-skin the dataset consists of ~4 hours of contact data with different types of household objects, collected via a VR teleoperation using the Meta Quest 3.
|
| 4 |
+
|
| 5 |
+
There are 14 different objects in the dataset, each containing 10 sequences per object, which are each ~2 mins long. Every object has varied interaction with the object, including sliding, tapping, object reorientation in the hand, and the like.
|
| 6 |
+
|
| 7 |
+
We provide the sequences used for SSL training in an extracted `pickle` format. Each sequence in the dataset has the following structure:
|
| 8 |
+
|
| 9 |
+
```bash
|
| 10 |
+
.
|
| 11 |
+
├── ball
|
| 12 |
+
│ ├── 0
|
| 13 |
+
│ │ ├── allegro # contains data.pkl with allegro joint states information
|
| 14 |
+
│ │ └── xela # contains `data.pkl` and `forces.pkl`; `data.pkl` contains raw data used for training, and `forces.pkl` contains
|
| 15 |
+
│ ├── 1
|
| 16 |
+
| |....
|
| 17 |
+
|
|
| 18 |
+
|-- baseline
|
| 19 |
+
│ ├── allegro
|
| 20 |
+
│ ├── realsense
|
| 21 |
+
│ │ └── color
|
| 22 |
+
│ └── xela
|
| 23 |
+
|-- urdf
|
| 24 |
+
```
|