tony0517 commited on
Commit
f447a47
·
verified ·
1 Parent(s): 97069f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -3
README.md CHANGED
@@ -1,3 +1,90 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ pretty_name: HoRD Dataset
4
+ language:
5
+ - en
6
+ tags:
7
+ - robotics
8
+ - humanoid-robot
9
+ - reinforcement-learning
10
+ - motion-imitation
11
+ - sim2sim
12
+ ---
13
+
14
+ # HoRD Dataset: Processed Motion Data for Robust Humanoid Control
15
+
16
+ This dataset card describes the processed training data used by **HoRD** (History-Conditioned Reinforcement Learning and Online Distillation), a two-stage framework for robust humanoid motion control under domain shift.
17
+
18
+ - **Paper**: [HoRD: Robust Humanoid Control via History-Conditioned Reinforcement Learning and Online Distillation](https://arxiv.org/abs/2602.04412)
19
+ - **Project Page**: [https://tonywang-0517.github.io/hord/](https://tonywang-0517.github.io/hord/)
20
+ - **Code Repository**: [https://github.com/tonywang-0517/hord](https://github.com/tonywang-0517/hord)
21
+ - **Dataset Repository**: [https://huggingface.co/datasets/tony0517/HoRD](https://huggingface.co/datasets/tony0517/HoRD)
22
+ - **Model Repository**: [https://huggingface.co/tony0517/HoRD](https://huggingface.co/tony0517/HoRD)
23
+
24
+ ## Overview
25
+
26
+ The HoRD dataset provides processed motion data for humanoid policy training. It is designed for the HoRD teacher-student pipeline:
27
+
28
+ - **Stage 1 (Teacher RL)**: train an expert policy with privileged observations and domain randomization.
29
+ - **Stage 2 (Online Distillation)**: distill to a deployable student policy with sparse commands and partial observations.
30
+
31
+ In HoRD, this data supports robust motion imitation and zero-shot transfer experiments across simulators.
32
+
33
+ ## Dataset Contents
34
+
35
+ Current primary release:
36
+
37
+ - `train_g1_all.pt`: processed motion data used for training and evaluation configuration.
38
+
39
+ ## Quick Start
40
+
41
+ Install Hugging Face CLI:
42
+
43
+ ```bash
44
+ pip install -U "huggingface_hub[cli]"
45
+ ```
46
+
47
+ Download the dataset file:
48
+
49
+ ```bash
50
+ mkdir -p data
51
+ huggingface-cli download --repo-type=dataset tony0517/HoRD train_g1_all.pt --local-dir data --local-dir-use-symlinks False
52
+ ```
53
+
54
+ Use in HoRD training/evaluation:
55
+
56
+ ```bash
57
+ motion_file=data/train_g1_all.pt
58
+ ```
59
+
60
+ ## Example Training Commands
61
+
62
+ Stage 1:
63
+
64
+ ```bash
65
+ python hord/train_agent.py +exp=full_body_tracker/transformer +robot=g1 +simulator=isaaclab motion_file=data/train_g1_all.pt +experiment_name=full_body_tracker_g1 ++headless=True
66
+ ```
67
+
68
+ Stage 2:
69
+
70
+ ```bash
71
+ python hord/train_agent.py +exp=masked_mimic/no_vae +robot=g1 +simulator=isaaclab motion_file=data/train_g1_all.pt +experiment_name=masked_mimic_g1 ++headless=True
72
+ ```
73
+
74
+ ## License
75
+
76
+ This dataset card is released under the **MIT License**.
77
+ Please also follow the licenses and terms of any upstream data sources used in preprocessing.
78
+
79
+ ## Citation
80
+
81
+ If you find this dataset useful, please cite:
82
+
83
+ ```bibtex
84
+ @article{wang2026hord,
85
+ title={HoRD: Robust Humanoid Control via History-Conditioned Reinforcement Learning and Online Distillation},
86
+ author={Wang, Puyue and Hu, Jiawei and Gao, Yan and Wang, Junyan and Zhang, Yu and Dobbie, Gillian and Gu, Tao and Johal, Wafa and Dang, Ting and Jia, Hong},
87
+ journal={arXiv preprint arXiv:2602.04412},
88
+ year={2026}
89
+ }
90
+ ```