Improve dataset card: add task category, paper, code and project links

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +29 -35
README.md CHANGED
@@ -2,11 +2,15 @@
2
  license: other
3
  license_name: multiple-licenses
4
  license_link: LICENSE
 
 
5
  viewer: false
6
  ---
7
 
8
  # EgoForce Evaluation Data
9
 
 
 
10
  This repository contains the evaluation data used for **EgoForce: Forearm-Guided Camera-Space 3D Hand Pose from a Monocular Egocentric Camera**.
11
 
12
  It includes official evaluation datasets together with EgoForce-specific processed artifacts:
@@ -22,6 +26,16 @@ The datasets currently present in this repository are:
22
  - `H2O`
23
  - `HOT3D`
24
 
 
 
 
 
 
 
 
 
 
 
25
  ## Notice
26
 
27
  This repository does **not** grant a new standalone license over the included data.
@@ -35,18 +49,27 @@ See [LICENSE](LICENSE) for the composite provenance and redistribution notice.
35
 
36
  | Dataset | Official paper / project | Official license source | Official license summary | EgoForce-specific processing in this repository |
37
  | --- | --- | --- | --- | --- |
38
- | `ARCTIC` | [ARCTIC: A Dataset for Dexterous Bimanual Hand-Object Manipulation](https://arctic.is.tue.mpg.de/) | [ARCTIC license](https://arctic.is.tue.mpg.de/license.html) | Non-commercial scientific research, non-commercial education, and non-commercial artistic use only. Commercial use is prohibited without separate permission. The ARCTIC license also states that the data and software may not be reproduced, shared, distributed, transferred, or sublicensed to third parties without prior written permission. | EgoForce uses ARCTIC as an evaluation dataset and adds processed forearm annotations, hand masks, hand-joint occlusion metadata, filtered hand-present indices, and evaluation indexing files. |
39
- | `H2O` | [H2O: Two Hands Manipulating Objects for First Person Interaction Recognition](https://taeinkwon.com/projects/h2o/) | [H2O terms of use](https://h2odataset.ethz.ch/) | Academic use only. No commercial use. No transfer to any third party. ETH Zurich and its licensors retain ownership; publications using the dataset must reference the dataset. | EgoForce uses H2O as an evaluation dataset and adds processed hand masks, and forearm annotations, filtered hand-present indices. |
40
- | `HOT3D` | [HOT3D: Hand and Object Tracking in 3D from Egocentric Multi-View Videos](https://facebookresearch.github.io/hot3d/) | [HOT3D license agreement](https://www.projectaria.com/datasets/hot3d/license/) | HOT3D uses **different official licenses for different asset types**: sequence data and non-hand annotations are `CC BY-SA`; hand annotations are `CC BY-NC-SA`; 3D object models are `CC BY-SA` with an additional no-sale restriction. Users are responsible for complying with the terms for each asset type they use. | EgoForce uses HOT3D as an evaluation dataset and adds hand bounding boxes, occlusion metadata, filtered hand-present indices, and a custom validation split used in the paper. |
41
 
42
 
43
  ## Citation Requirements
44
 
45
  If you use this repository or the processed evaluation setup, cite the corresponding EgoForce paper **and** cite the original datasets you use.
46
 
47
- ### ARCTIC
 
 
 
 
 
 
 
 
 
48
 
49
- Official citation from the ARCTIC project page / license page:
50
 
51
  ```bibtex
52
  @inproceedings{fan2023arctic,
@@ -57,15 +80,8 @@ Official citation from the ARCTIC project page / license page:
57
  }
58
  ```
59
 
60
- Sources:
61
-
62
- - https://arctic.is.tue.mpg.de/
63
- - https://arctic.is.tue.mpg.de/license.html
64
-
65
  ### H2O
66
 
67
- Official citation from the H2O project page:
68
-
69
  ```bibtex
70
  @InProceedings{Kwon_2021_ICCV,
71
  author = {Kwon, Taein and Tekin, Bugra and St\"uhmer, Jan and Bogo, Federica and Pollefeys, Marc},
@@ -77,15 +93,8 @@ Official citation from the H2O project page:
77
  }
78
  ```
79
 
80
- Sources:
81
-
82
- - https://taeinkwon.com/projects/h2o/
83
- - https://h2odataset.ethz.ch/
84
-
85
  ### HOT3D
86
 
87
- Official citation from the HOT3D homepage:
88
-
89
  ```bibtex
90
  @article{banerjee2024hot3d,
91
  title={{HOT3D}: Hand and Object Tracking in {3D} from Egocentric Multi-View Videos},
@@ -93,19 +102,4 @@ Official citation from the HOT3D homepage:
93
  journal={CVPR},
94
  year={2025}
95
  }
96
- ```
97
-
98
- Sources:
99
-
100
- - https://facebookresearch.github.io/hot3d/
101
- - https://www.projectaria.com/datasets/hot3d/license/
102
-
103
-
104
- ## Official Source Links
105
-
106
- - ARCTIC project: https://arctic.is.tue.mpg.de/
107
- - ARCTIC license: https://arctic.is.tue.mpg.de/license.html
108
- - H2O project: https://taeinkwon.com/projects/h2o/
109
- - H2O terms: https://h2odataset.ethz.ch/
110
- - HOT3D project: https://facebookresearch.github.io/hot3d/
111
- - HOT3D license: https://www.projectaria.com/datasets/hot3d/license/
 
2
  license: other
3
  license_name: multiple-licenses
4
  license_link: LICENSE
5
+ task_categories:
6
+ - keypoint-detection
7
  viewer: false
8
  ---
9
 
10
  # EgoForce Evaluation Data
11
 
12
+ [Project Page](https://dfki-av.github.io/EgoForce) | [Paper](https://huggingface.co/papers/2605.12498) | [Code](https://github.com/dfki-av/EgoForce) | [Demo](https://huggingface.co/spaces/chris10/EgoForce)
13
+
14
  This repository contains the evaluation data used for **EgoForce: Forearm-Guided Camera-Space 3D Hand Pose from a Monocular Egocentric Camera**.
15
 
16
  It includes official evaluation datasets together with EgoForce-specific processed artifacts:
 
26
  - `H2O`
27
  - `HOT3D`
28
 
29
+ ## Usage
30
+
31
+ To download the datasets, you can use the provided script from the [official repository](https://github.com/dfki-av/EgoForce):
32
+
33
+ ```bash
34
+ bash scripts/download_datasets.sh --data-root /path/to/datasets
35
+ ```
36
+
37
+ After download, update `settings.py` so `config.DATASET.DIR` points to your dataset root.
38
+
39
  ## Notice
40
 
41
  This repository does **not** grant a new standalone license over the included data.
 
49
 
50
  | Dataset | Official paper / project | Official license source | Official license summary | EgoForce-specific processing in this repository |
51
  | --- | --- | --- | --- | --- |
52
+ | `ARCTIC` | [ARCTIC: A Dataset for Dexterous Bimanual Hand-Object Manipulation](https://arctic.is.tue.mpg.de/) | [ARCTIC license](https://arctic.is.tue.mpg.de/license.html) | Non-commercial scientific research, non-commercial education, and non-commercial artistic use only. Commercial use is prohibited without separate permission. | EgoForce uses ARCTIC as an evaluation dataset and adds processed forearm annotations, hand masks, hand-joint occlusion metadata, filtered hand-present indices, and evaluation indexing files. |
53
+ | `H2O` | [H2O: Two Hands Manipulating Objects for First Person Interaction Recognition](https://taeinkwon.com/projects/h2o/) | [H2O terms of use](https://h2odataset.ethz.ch/) | Academic use only. No commercial use. No transfer to any third party. | EgoForce uses H2O as an evaluation dataset and adds processed hand masks, and forearm annotations, filtered hand-present indices. |
54
+ | `HOT3D` | [HOT3D: Hand and Object Tracking in 3D from Egocentric Multi-View Videos](https://facebookresearch.github.io/hot3d/) | [HOT3D license agreement](https://www.projectaria.com/datasets/hot3d/license/) | Different official licenses for different asset types (CC BY-SA, CC BY-NC-SA). | EgoForce uses HOT3D as an evaluation dataset and adds hand bounding boxes, occlusion metadata, filtered hand-present indices, and a custom validation split. |
55
 
56
 
57
  ## Citation Requirements
58
 
59
  If you use this repository or the processed evaluation setup, cite the corresponding EgoForce paper **and** cite the original datasets you use.
60
 
61
+ ### EgoForce
62
+
63
+ ```bibtex
64
+ @inproceedings{millerdurai2026egoforce,
65
+ title={EgoForce: Forearm-Guided Camera-Space 3D Hand Pose from a Monocular Egocentric Camera},
66
+ author={Millerdurai, Christen and Wang, Shaoxiang and Xie, Yaxu and Golyanik, Vladislav and Stricker, Didier and Pagani, Alain},
67
+ booktitle={Proceedings of the SIGGRAPH 2026 Conference Papers},
68
+ year={2026}
69
+ }
70
+ ```
71
 
72
+ ### ARCTIC
73
 
74
  ```bibtex
75
  @inproceedings{fan2023arctic,
 
80
  }
81
  ```
82
 
 
 
 
 
 
83
  ### H2O
84
 
 
 
85
  ```bibtex
86
  @InProceedings{Kwon_2021_ICCV,
87
  author = {Kwon, Taein and Tekin, Bugra and St\"uhmer, Jan and Bogo, Federica and Pollefeys, Marc},
 
93
  }
94
  ```
95
 
 
 
 
 
 
96
  ### HOT3D
97
 
 
 
98
  ```bibtex
99
  @article{banerjee2024hot3d,
100
  title={{HOT3D}: Hand and Object Tracking in {3D} from Egocentric Multi-View Videos},
 
102
  journal={CVPR},
103
  year={2025}
104
  }
105
+ ```