carohiguera commited on
Commit
466860e
1 Parent(s): 1e80a65

adding dataset and readme

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,44 +1,71 @@
1
  ---
2
- pretty_name: object-slide
 
 
 
 
 
3
  ---
4
 
5
- # Dataset Card for Dataset Name
6
 
7
- <!-- Provide a quick summary of the dataset. -->
8
 
9
- This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
 
10
 
11
- ## Dataset Details
12
 
13
- ### Dataset Description
14
 
15
- <!-- Provide a longer summary of what this dataset is. -->
16
 
17
 
18
-
19
- - **Curated by:** [More Information Needed]
20
- - **License:** [More Information Needed]
21
-
22
- ### Dataset Sources [optional]
23
-
24
- <!-- Provide the basic links for the dataset. -->
25
-
26
- - **Repository:** [More Information Needed]
27
-
28
  ## Uses
29
 
30
- <!-- Address questions around how the dataset is intended to be used. -->
31
-
32
- ## Dataset Structure
33
-
34
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
35
-
36
 
 
37
 
38
- ## Citation [optional]
39
-
40
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
41
-
42
- **BibTeX:**
43
 
44
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - sparsh
5
+ - DIGIT
6
+ - SSL pre-training
7
+ pretty_name: touch-slide
8
  ---
9
 
10
+ # Dataset Details
11
 
12
+ Touch-Slide is a dataset inspired by [YCB-Slide](https://github.com/rpl-cmu/YCB-Slide). Its purpose is to increase the amount of data from multiple DIGIT sensors for self-supervised learning (SSL) pre-training of the Sparsh model. Touch-Slide consists of human-sliding interactions on toy kitchen objects using the DIGIT sensor. We used 9 objects, as shown below, and collected 5 trajectories for each, resulting in a total of 180k frames.
13
 
14
+ <!-- insert figure from assets/touch_slide_objs.png -->
15
+ ![Touch-Slide](assets/touch_slide_objs.png)
16
 
17
+ This is a visual example of how the dataset was collected, showcasing sliding interactions that capture trajectories rich in shear forces:
18
 
19
+ ![a](assets/bread-real.gif) ![b](assets/bread-digit.gif)
20
 
 
21
 
22
 
 
 
 
 
 
 
 
 
 
 
23
  ## Uses
24
 
25
+ This dataset does not include labels and is intended for self-supervised training only. It is specifically designed for training the Sparsh models listed in the Hugging Face [Sparsh collection](https://huggingface.co/collections/facebook/sparsh-67167ce57566196a4526c328).
 
 
 
 
 
26
 
27
+ Please refer to the [Sparsh repo](https://github.com/facebookresearch/sparsh) for further information about usage.
28
 
29
+ ## Dataset Structure
 
 
 
 
30
 
31
+ The dataset consists of 5 trajectories for each object. Each trajectory is stored as a pickle file, containing binarized tactile images. The structure is as follows:
32
+
33
+ ```bash
34
+ Touch-Slide
35
+ ├── object_0 # eg: bread
36
+ │ ├── dataset_0.pkl
37
+ │ ├── ...
38
+ │ ├── dataset_4.pkl
39
+ ├── object_1 # eg: corn
40
+ ├── ...
41
+ ```
42
+
43
+ This is a sample code for loading the dataset in pickle format and extracting the images:
44
+
45
+ ```python
46
+ def load_pickle_dataset(file_dataset):
47
+ with open(file_dataset, "rb") as f:
48
+ all_frames = pickle.load(f)
49
+ return all_frames
50
+
51
+ def load_bin_image(io_buf):
52
+ img = Image.open(io.BytesIO(io_buf))
53
+ img = np.array(img)
54
+ return img
55
+
56
+ frames = load_pickle_dataset('bread/dataset_0.pkl')
57
+ img = load_bin_image(frames[0])
58
+ ```
59
+
60
+ ## BibTeX entry and citation info
61
+
62
+ ```bibtex
63
+ @inproceedings{
64
+ higuera2024sparsh,
65
+ title={Sparsh: Self-supervised touch representations for vision-based tactile sensing},
66
+ author={Carolina Higuera and Akash Sharma and Chaithanya Krishna Bodduluri and Taosha Fan and Patrick Lancaster and Mrinal Kalakrishnan and Michael Kaess and Byron Boots and Mike Lambeta and Tingfan Wu and Mustafa Mukadam},
67
+ booktitle={8th Annual Conference on Robot Learning},
68
+ year={2024},
69
+ url={https://openreview.net/forum?id=xYJn2e1uu8}
70
+ }
71
+ ```
assets/bread-digit.gif ADDED

Git LFS Details

  • SHA256: a3ac94d9d308fae4492a16b7ab705675245f64ea61138d5e95bf90531724e07e
  • Pointer size: 132 Bytes
  • Size of remote file: 8.91 MB
assets/bread-real.gif ADDED

Git LFS Details

  • SHA256: bd48618b41c5bb5b1bea2f1bbb83d4e963c01c931694f81cc19ba60ef993e7f4
  • Pointer size: 133 Bytes
  • Size of remote file: 11.8 MB
assets/touch_slide_objs.png ADDED

Git LFS Details

  • SHA256: 731008cc5e81402f47f379b87573eb7963cba86a7622d62b2279eecaf6f021d6
  • Pointer size: 132 Bytes
  • Size of remote file: 8.99 MB
banana/dataset_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddf882fa24175fd8cd13a04f824bb1b80ed2aa8950ce7b89d24018104dc3ca6d
3
+ size 56646159
banana/dataset_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f25d27cfdf479fb2b8081f70febebad04e8fff5c5110f3178e48928452fd140d
3
+ size 56466159
banana/dataset_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14088abd0e0e0ba1d71a49c4672fa23db14ab39a6daa78ad1183960bb7af825f
3
+ size 56466159
banana/dataset_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:543e3ced4253c49a94f717e58bb90d2cb223665a36762e366a4194d0a2c3487e
3
+ size 56340159
banana/dataset_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a97051e9d114580e89780c51657a08aeeb05378964b5f50decdddecd1d2eb6
3
+ size 55800159
bgs/bg.jpg ADDED

Git LFS Details

  • SHA256: db08fba12c5d033fb0a0e0b15d9b679859877feb5d355729c45825e8a4493ee7
  • Pointer size: 130 Bytes
  • Size of remote file: 13.4 kB
bgs/bg_0.jpg ADDED

Git LFS Details

  • SHA256: b9cf8709f695dba399510d64785bb74561dabffe2c4e123f79c366ec9dcc0b4a
  • Pointer size: 130 Bytes
  • Size of remote file: 13.5 kB
bgs/bg_1.jpg ADDED

Git LFS Details

  • SHA256: e91cef1d232d537f7e0b9b79ac782e8464b1554a9b93b320f0ecd915096b0a1c
  • Pointer size: 130 Bytes
  • Size of remote file: 13.5 kB
bgs/bg_10.jpg ADDED

Git LFS Details

  • SHA256: bfbc34ad55485639fae962ddd59b52815d57b0d5e59eafae34cebb409ecbcb7d
  • Pointer size: 130 Bytes
  • Size of remote file: 14.2 kB
bgs/bg_11.jpg ADDED

Git LFS Details

  • SHA256: 09d9a96886b224faf9b0f129204977d1aafc5aa6ea12d491c8745cddd25ee701
  • Pointer size: 130 Bytes
  • Size of remote file: 13.8 kB
bgs/bg_12.jpg ADDED

Git LFS Details

  • SHA256: 09d843122bb4f24f07658eb3a45a60a5ea688b013e2275b1889e485a1b2f7593
  • Pointer size: 129 Bytes
  • Size of remote file: 9.28 kB
bgs/bg_13.jpg ADDED

Git LFS Details

  • SHA256: 6dd2b5527b20a670e3c7e719c05b77bdb08189da246dea458da9080e2c0e96da
  • Pointer size: 129 Bytes
  • Size of remote file: 3.99 kB
bgs/bg_14.jpg ADDED

Git LFS Details

  • SHA256: 326fc2511a0b57c5b776362d334b49045f6ca650a1508ebe7cb388c206ee4d40
  • Pointer size: 130 Bytes
  • Size of remote file: 14.2 kB
bgs/bg_15.jpg ADDED

Git LFS Details

  • SHA256: 2541435756539d925c41e34ddec672d32c557e2ea124695da546490e37923da4
  • Pointer size: 130 Bytes
  • Size of remote file: 13.6 kB
bgs/bg_15_0.jpg ADDED

Git LFS Details

  • SHA256: 2c328e8e218ac0d1029d26a32f063fafae32aa4a87c3fab2c0a56212a0353185
  • Pointer size: 130 Bytes
  • Size of remote file: 13.8 kB
bgs/bg_16.jpg ADDED

Git LFS Details

  • SHA256: e237dd1c38ce1f43d289e0b4d65e076c4f556a665297e9e7a21ca9d87d51d0b4
  • Pointer size: 130 Bytes
  • Size of remote file: 14.1 kB
bgs/bg_17.jpg ADDED

Git LFS Details

  • SHA256: 4751a824edcc076508415ae151c8c6fa0db4a1e9ef21d10343386a732cd864cf
  • Pointer size: 130 Bytes
  • Size of remote file: 13.8 kB
bgs/bg_18.jpg ADDED

Git LFS Details

  • SHA256: d1865a8eeea3f3cb129a3560841fad12474a3d995d56ec6aa62991631d7a7718
  • Pointer size: 130 Bytes
  • Size of remote file: 13.4 kB
bgs/bg_2.jpg ADDED

Git LFS Details

  • SHA256: ca3a25c967c57f573dd3553d20c6241d965ee3c352e39d87d2888b11318d48b3
  • Pointer size: 130 Bytes
  • Size of remote file: 13.9 kB
bgs/bg_3.jpg ADDED

Git LFS Details

  • SHA256: 6b1b82dc514adb369cc5bfc0218d2703ca6fd2090ae462bdcd95eac4a270c735
  • Pointer size: 130 Bytes
  • Size of remote file: 13.5 kB
bgs/bg_4.jpg ADDED

Git LFS Details

  • SHA256: dda34485d896e7d694e56dbf60f854eabddfb53dc1e67abd7f568a638e663c3f
  • Pointer size: 130 Bytes
  • Size of remote file: 13.6 kB
bgs/bg_5.jpg ADDED

Git LFS Details

  • SHA256: a93fb1eb07f0ff51b8b44460afc03d1323073602910f52ec728fc0c70e5d5c07
  • Pointer size: 130 Bytes
  • Size of remote file: 13.7 kB
bgs/bg_6.jpg ADDED

Git LFS Details

  • SHA256: 488c0c3959f3e716691efb1496b7b1c7322cc83d53d965e3a884bb29f96bead5
  • Pointer size: 130 Bytes
  • Size of remote file: 13.9 kB
bgs/bg_7.jpg ADDED

Git LFS Details

  • SHA256: afa655b013492b4d80e33224a613f40316abd02c726ebca5a94d0c600c2632b7
  • Pointer size: 130 Bytes
  • Size of remote file: 13.4 kB
bgs/bg_8.jpg ADDED

Git LFS Details

  • SHA256: 5aff41d201a566564958272a96883528601169d9972a977ba574a65bef724363
  • Pointer size: 130 Bytes
  • Size of remote file: 13.6 kB
bgs/bg_9.jpg ADDED

Git LFS Details

  • SHA256: db08fba12c5d033fb0a0e0b15d9b679859877feb5d355729c45825e8a4493ee7
  • Pointer size: 130 Bytes
  • Size of remote file: 13.4 kB
bread/dataset_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea68e5c5ac40e0f8b2a21047bdf5b5d13085cabe67734a000954039517d1f911
3
+ size 51609759
bread/dataset_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9460a4f334138afaf71db7845cad8db66399f533cf8fb129048c52f7f74c22fc
3
+ size 52002159
bread/dataset_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05aff9b3b4f51ce09fe4cda32debec60d399d4bf79b8d4a81410925e4be131a7
3
+ size 51447759
bread/dataset_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bcdccd18148706641dde582697d037313a8d0e54ca74eda150ce24a44d35daf
3
+ size 51667359
bread/dataset_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20444f976a3894834bc3cf5d1f436c826840f49742f4799a2c57a402a3a3004a
3
+ size 51811359
cheese/dataset_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3380339c517b39776d03846880f6d5098c6670040808d41b82bb895dd508b5d0
3
+ size 50932959
cheese/dataset_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82d4d9cad28aee1d6436144adcd5ae7c7faf01faaddbb2e5272dec2915749b3c
3
+ size 51537759
cheese/dataset_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e68d9769446d70f5366bd0307f0c64dba75e8372c727ae4f29b472aef2a9d71
3
+ size 51314559
cheese/dataset_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6733198163d34017754d7aa081e4317f32d4d34c2ae635c4bda021571f021d2
3
+ size 50886159
cheese/dataset_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10d51fcfd0b8adebfd6b59eeb8b440fb9da6493fe1b33102c495aef33eee05e5
3
+ size 51987759
cookie/dataset_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d538cfa88003097bcbbc0531178c885dcc9f6456de15fea3e720d03bb596dfa
3
+ size 51696159
cookie/dataset_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4393b22855988d6a2bcf30a6ac9971aa9edd5c6adbf072b55d271d183164efc8
3
+ size 51778959
cookie/dataset_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e44ea5ba30cb88cae80103f462edf34b3ebc5cbbea245079ba5252c835b88624
3
+ size 52095759
cookie/dataset_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1d34a68583b521b1d4c522f8c272a184371ba6abbfb85fb246a655661152106
3
+ size 51976959
cookie/dataset_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c41d5846776efe16783b05f3ed872c3878f6f26d391f3143662f49735b4ee8b
3
+ size 52178559
corn/dataset_0.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6991e73e5c6cf6e0776671ec9fbc8b1baf96dab27e3a8c963843a57c5980868c
3
+ size 49968159
corn/dataset_1.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c37f3aa70c247889a869efc5746b175f54d984cb8deeca9e85acef5305aed9ae
3
+ size 50043759
corn/dataset_2.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79f4a9950f278996edff9b901598009584bc941182e874ca14aa08b94cdb3021
3
+ size 50256159
corn/dataset_3.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db6f0dc5d5cf46c816c1b3225c9618f81fe0fa431e3d8c2383b9217e67c7e744
3
+ size 49687359
corn/dataset_4.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd4622af4290f97c2e866eee5196649fd6dbe5ec2f1ff3bdcdbbe3996ee84327
3
+ size 49489359