[docs] add dataset card
Browse files
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- robotics
|
5 |
+
---
|
6 |
+
|
7 |
+
# Dataset of Reactive Diffusion Policy
|
8 |
+
|
9 |
+
## Contents
|
10 |
+
|
11 |
+
- [Description](#description)
|
12 |
+
- [Structure](#structure)
|
13 |
+
- [Usage](#usage)
|
14 |
+
|
15 |
+
## Description
|
16 |
+
|
17 |
+
This is the raw dataset used in the paper
|
18 |
+
[Reactive Diffusion Policy: Slow-Fast Visual-Tactile Policy Learning for Contact-Rich Manipulation](https://reactive-diffusion-policy.github.io).
|
19 |
+
|
20 |
+
- [Paper](https://arxiv.org/pdf/2503.02881)
|
21 |
+
- [Project Homepage](https://reactive-diffusion-policy.github.io)
|
22 |
+
- [GitHub Repository](https://github.com/xiaoxiaoxh/reactive_diffusion_policy)
|
23 |
+
|
24 |
+
## Structure
|
25 |
+
|
26 |
+
We offer two versions of the dataset:
|
27 |
+
one is the [full dataset](https://huggingface.co/datasets/WendiChen/reactive_diffusion_policy_dataset/tree/main/dataset_full) used to train the models in our paper,
|
28 |
+
and the other is a [mini dataset](https://huggingface.co/datasets/WendiChen/reactive_diffusion_policy_dataset/tree/main/dataset_mini) for easier examination.
|
29 |
+
Both versions include subsets of peeling, wiping and lifting.
|
30 |
+
Each subset is structured as follows:
|
31 |
+
|
32 |
+
```
|
33 |
+
subset_name
|
34 |
+
├── seq_01.pkl
|
35 |
+
├── seq_02.pkl
|
36 |
+
├── ...
|
37 |
+
```
|
38 |
+
Note that we split the full lifting subset into 2 parts due to file size restrictions.
|
39 |
+
|
40 |
+
## Usage
|
41 |
+
|
42 |
+
Follow the [README in our GitHub repo](https://github.com/xiaoxiaoxh/reactive_diffusion_policy)
|
43 |
+
to [postprocess the data](https://github.com/xiaoxiaoxh/reactive_diffusion_policy#data-postprocessing)
|
44 |
+
and [train the model](https://github.com/xiaoxiaoxh/reactive_diffusion_policy#-training).
|