Datasets:

ArXiv:
License:
carohiguera commited on
Commit
0e27516
·
1 Parent(s): 0ad2b27

update readme

Browse files
Files changed (1) hide show
  1. README.md +77 -3
README.md CHANGED
@@ -1,3 +1,77 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0fe92c060b0e91cc5ae9a31bd3c2b9ec42c17d43f10bff14278d86ab0ca1338f
3
- size 33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - Sparsh-x
5
+ - Digit 360
6
+ - SSL training
7
+ ---
8
+
9
+ # Dataset Details
10
+
11
+ This dataset contains the sequences used for training [Sparsh-X](https://akashsharma02.github.io/sparsh-x-ssl/), a multisensory touch encoder for the [Digit 360](https://digit.ml/) sensor. Sparsh-X allows to fuse multiple touch modalities into a single embedding, such as tactile image, audio from contact microphones, IMU and pressure data.
12
+
13
+ Our Sparsh-X training dataset is generated from two primary sources: an Allegro hand with Digit 360 sensors on the fingertips that performs random motions with objects such as dipping into a tray filled with various items; and a manual picker with the same sensor adapted to the gripping mechanism, used to execute atomic manipulation actions such as picking up, sliding, tapping, placing, and dropping objects against diverse surfaces that vary in roughness, hardness, softness, friction, and texture properties. An example of the data collection is shown below:
14
+
15
+ <div align="center">
16
+ <img src="assets/object_action.gif" height="500" alt="D360 data collection">
17
+ </div>
18
+
19
+
20
+ ## Dataset Structure and Usage
21
+
22
+ Each sequence contains a `data.pickle` and `metadata.yaml`. The pickle file has the following structure, with the raw messages per Digit 360 and tactile modality:
23
+
24
+ ```bash
25
+ ├── data.pickle
26
+ │ ├── d360_0
27
+ │ | ├── image_raw/compressed # list of msgs with tactile image @30Hz
28
+ │ | ├── imu_quat_topic # list of msgs with IMU quaternion data @400Hz
29
+ │ | ├── imu_raw_topic # list of msgs with raw 3-axis accelerometer data @400Hz
30
+ │ | ├── mic_0 # list of time-series messages from contact microphone @48kHz
31
+ │ | ├── mic_1 # list of time-series messages from contact microphone @48kHz
32
+ │ | ├── pressure_topic # list of time-series messages from pressure @200Hz
33
+ ```
34
+
35
+ You can load the pickle file as:
36
+ ```python
37
+ import pandas as pd
38
+ sequence_path = <PATH TO SEQUENCE>
39
+ ros_msgs = pd.read_pickle(os.path.join(sequence, "data.pickle"))
40
+ print(ros_msgs.keys())
41
+ ```
42
+ And the output should be the key name for each Digit 360 qith recorded data:
43
+ ```bash
44
+ > dict_keys(['d360_0', 'd360_1', 'd360_2', 'd360_3'])
45
+ ```
46
+
47
+ The `metadata.yaml` for each sequence contains useful labels for Supervised Learninf downstream tasks. It describes the object in direct contact with the sensor (e.g. tennis ball), the surface the object is making contact with (e.g. grass), and the action that was perform during the data collection (e.g. tapping). Be aware that not all sequences have the three labels, for instance may not have the surface label.
48
+
49
+
50
+ Please refer to [Sparsh-X repo](https://github.com/facebookresearch/sparsh-multisensory-touch) for further information about using the dataset for SSL training. Some useful pointers:
51
+
52
+ - [List](https://github.com/facebookresearch/sparsh-multisensory-touch/config/data/d360.yaml) of sequences for SSL training
53
+ - [D360 class](https://github.com/facebookresearch/sparsh-multisensory-touch/tactile_ssl/data/d360/d360.py) for dataloader
54
+
55
+ ## Citation
56
+
57
+ If you find this dataset useful for your research, please consider citing:
58
+
59
+ ```bibtex
60
+ @inproceedings{
61
+ higuera2025tactile,
62
+ title={Tactile Beyond Pixels: Multisensory Touch Representations for Robot Manipulation},
63
+ author={Carolina Higuera and Akash Sharma and Taosha Fan and Chaithanya Krishna Bodduluri and Byron Boots and Michael Kaess and Mike Lambeta and Tingfan Wu and Zixi Liu and Francois Robert Hogan and Mustafa Mukadam},
64
+ booktitle={9th Annual Conference on Robot Learning},
65
+ year={2025},
66
+ url={https://openreview.net/forum?id=sMs4pJYhWi}
67
+ }
68
+ ```
69
+
70
+ ```bibtex
71
+ @article{lambeta2024digitizing,
72
+ title={Digitizing touch with an artificial multimodal fingertip},
73
+ author={Lambeta, Mike and Wu, Tingfan and Sengul, Ali and Most, Victoria Rose and Black, Nolan and Sawyer, Kevin and Mercado, Romeo and Qi, Haozhi and Sohn, Alexander and Taylor, Byron and others},
74
+ journal={arXiv preprint arXiv:2411.02479},
75
+ year={2024}
76
+ }
77
+ ```