Improve dataset card: Consolidate metadata, add links, sample usage, and citation

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +59 -16
README.md CHANGED
@@ -1,17 +1,3 @@
1
- # Active Perception AAWR Dataset in GRASP Lab Mock Kitchen
2
-
3
- Here is our full dataset (13.5GB) in DROID format:
4
- https://huggingface.co/datasets/Everloom/AAWR-DROID/
5
-
6
- It includes 4 scene as below, each are cleaned with a white list (filter the idle frames)
7
-
8
- ![image](https://cdn-uploads.huggingface.co/production/uploads/649939137e4bb2372ef88394/pE_hJnP6lmC0J5VPWHCFj.png)
9
-
10
- Here is a website on searching behavior under 3rd camera view
11
- https://sites.google.com/view/rwrl-ap/home
12
-
13
- Please comment below with you suggestions , which will be very helpful for our release!
14
-
15
  ---
16
  license: mit
17
  task_categories:
@@ -23,5 +9,62 @@ tags:
23
  - robotics
24
  - RL
25
  size_categories:
26
- - 100M<n<1B
27
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  task_categories:
 
9
  - robotics
10
  - RL
11
  size_categories:
12
+ - 10B<n<100B
13
+ ---
14
+
15
+ # Active Perception AAWR Dataset in GRASP Lab Mock Kitchen
16
+
17
+ [Paper](https://huggingface.co/papers/2512.01188) | [Project page](https://penn-pal-lab.github.io/aawr/) | [Code](https://github.com/penn-pal-lab/aawr)
18
+
19
+ Here is our full dataset (13.5GB) in DROID format:
20
+ https://huggingface.co/datasets/Everloom/AAWR-DROID/
21
+
22
+ It includes 4 scene as below, each are cleaned with a white list (filter the idle frames)
23
+
24
+ ![image](https://cdn-uploads.huggingface.co/production/uploads/649939137e4bb2372ef88394/pE_hJnP6lmC0J5VPWHCFj.png)
25
+
26
+ ## Sample Usage
27
+
28
+ To get started with AAWR, follow these steps for a toy simulated task, as described in the [code repository](https://github.com/penn-pal-lab/aawr):
29
+
30
+ ### Setup
31
+
32
+ 1. **Install Python dependencies**: You can refer to the `environment.yaml` file, or just manually install the dependencies. There's not too many, mainly `torch`, `gymnasium` and their related packages.
33
+
34
+ 2. **Install the simulated xarm environment code, and generate demos**:
35
+ ```bash
36
+ git@github.com:edwhu/gym-xarm.git
37
+ pip install -e .
38
+ python generate_demos.py # generate demo data.
39
+
40
+ mkdir gymnasium_xarm_lift_bc
41
+ mv buffer.pkl gymnasium_xarm_lift_bc
42
+ ```
43
+
44
+ ### Train AAWR
45
+
46
+ Train AAWR on a simple simulated lifting task:
47
+
48
+ ```bash
49
+ python src/train_il.py agent=asym_awr modality=all task=gymnasium_xarm_lift dataset_dir=data/gymnasium_xarm_lift_bc seed=41 use_wandb=false exp_name=aawr_xarm_lift horizon=1 offline_steps=20000 train_steps=40000 lr=1e-4 grad_clip_norm=10 awr_filter=indicator expectile=0.9 A_scaling=3 save_video=true switch_awr_filter=true
50
+ ```
51
+
52
+ ## Citation
53
+
54
+ If you find our project helpful, please cite us:
55
+
56
+ ```bibtex
57
+ @inproceedings{
58
+ hu2025realworld,
59
+ title={Real-World Reinforcement Learning of Active Perception Behaviors},
60
+ author={Edward S. Hu and Jie Wang and Xingfang Yuan and Fiona Luo and Muyao Li and Gaspard Lambrechts and Oleh Rybkin and Dinesh Jayaraman},
61
+ booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems},
62
+ year={2025},
63
+ url={https://openreview.net/forum?id=RkdTtznSAL}
64
+ }
65
+ ```
66
+
67
+ ## Additional Resources
68
+
69
+ Here is a website on searching behavior under 3rd camera view:
70
+ https://sites.google.com/view/rwrl-ap/home