ZYYY99 commited on
Commit
7013b28
·
verified ·
1 Parent(s): d896a62

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -1
README.md CHANGED
@@ -1,3 +1,88 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ pretty_name: Humans with Collisions (HwC) Pose & Motion Dataset
4
+ task_categories:
5
+ - robotics
6
+ - other
7
+ tags:
8
+ - 3d-graphics
9
+ - smpl-h
10
+ - collision-resolution
11
+ - human-pose
12
+ - motion-analysis
13
+ configs:
14
+ - config_name: default
15
+ data_files:
16
+ - split: train
17
+ path: data/dataset/train_list.csv
18
+ - split: test
19
+ path: data/dataset/test_list.csv
20
  ---
21
+
22
+ # Humans with Collisions (HwC) Pose & Motion Dataset
23
+
24
+ This dataset contains the training, evaluation, and benchmark data for the paper:
25
+ **"PoseShield: Neural Collision Fields for Human Self-Collision Resolution (ECCV 2026)"**
26
+
27
+ - **Paper (arXiv):** [arXiv:2606.29686](https://arxiv.org/abs/2606.29686)
28
+ - **Code Repository:** [PoseShield on GitHub](https://github.com/Tencent-Hunyuan/HY-Motion-1.0) (or project repo)
29
+
30
+ ---
31
+
32
+ ## Dataset Structure
33
+
34
+ The repository contains two main groups of data structured under the `data/` directory:
35
+
36
+ ### 1. HwC Pose Dataset (Single Poses)
37
+ Used for training the neural self-collision field and evaluating pose-level collision resolution.
38
+ * `data/dataset/train_list.csv` - List of training sample IDs.
39
+ * `data/dataset/test_list.csv` - List of testing sample IDs.
40
+ * `data/dataset/augmented_data/` - Folder containing self-colliding SMPL-H body poses (`.npz`) used as negative training inputs.
41
+ * `data/dataset/gt_data/` - Folder containing corresponding collision-free ground truth poses (`.npz`).
42
+ * `data/dataset_test/` - The HwC 500-pose benchmark subset used for single-pose collision resolution validation, containing body models (`.pkl`), mesh files (`.obj`), and visualization references (`.png`).
43
+
44
+ ### 2. Motion Dataset (Motion Sequences)
45
+ Used for two-stage latent motion optimization and visual/numerical self-collision resolution benchmark.
46
+ * `data/motion_canonical/` - Folder containing the 100 canonical MotionFix self-intersecting human motion sequences (`.npy`).
47
+
48
+ ---
49
+
50
+ ## Usage Instructions
51
+
52
+ To use this dataset in your project, you can clone this repository directly or download the snapshot programmatically.
53
+
54
+ ### Cloning via Git LFS
55
+
56
+ Make sure you have Git LFS installed to fetch the `.npz` and `.npy` files correctly:
57
+
58
+ ```bash
59
+ git lfs install
60
+ git clone https://huggingface.co/datasets/ZYYY99/Humans_with_Collision
61
+ ```
62
+
63
+ ### Programmatic Download (Python)
64
+
65
+ You can download the entire folder structure programmatically using the `huggingface_hub` Python package:
66
+
67
+ ```python
68
+ from huggingface_hub import snapshot_download
69
+
70
+ snapshot_download(
71
+ repo_id="ZYYY99/Humans_with_Collision",
72
+ repo_type="dataset",
73
+ local_dir="data"
74
+ )
75
+ ```
76
+
77
+ ## Citation
78
+
79
+ If you use this dataset or the matching method in your research, please cite:
80
+
81
+ ```bibtex
82
+ @article{li2026poseshield,
83
+ title={PoseShield: Neural Collision Fields for Human Self-Collision Resolution},
84
+ author={Li, Zhengyuan and Deng, Zeyun and Shen, Yifan and Gui, Liangyan and Xie, Miaolan and Campbell, Joseph and Gao, Xifeng and Wu, Kui and Pan, Zherong and Bera, Aniket},
85
+ journal={arXiv preprint arXiv:2606.29686},
86
+ year={2026}
87
+ }
88
+ ```