harpreetsahota commited on
Commit
827baef
·
verified ·
1 Parent(s): 0e18304

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -42
README.md CHANGED
@@ -44,7 +44,7 @@ dataset_summary: '
44
 
45
  # Note: other available arguments include ''max_samples'', etc
46
 
47
- dataset = load_from_hub("harpreetsahota/hand-keypoints")
48
 
49
 
50
  # Launch the App
@@ -82,7 +82,7 @@ from fiftyone.utils.huggingface import load_from_hub
82
 
83
  # Load the dataset
84
  # Note: other available arguments include 'max_samples', etc
85
- dataset = load_from_hub("harpreetsahota/hand-keypoints")
86
 
87
  # Launch the App
88
  session = fo.launch_app(dataset)
@@ -93,23 +93,22 @@ session = fo.launch_app(dataset)
93
 
94
  ### Dataset Description
95
 
96
- <!-- Provide a longer summary of what this dataset is. -->
97
 
 
98
 
99
 
100
- - **Curated by:** [More Information Needed]
101
- - **Funded by [optional]:** [More Information Needed]
102
- - **Shared by [optional]:** [More Information Needed]
103
- - **Language(s) (NLP):** en
104
  - **License:** [More Information Needed]
105
 
106
- ### Dataset Sources [optional]
107
 
108
- <!-- Provide the basic links for the dataset. -->
109
 
110
- - **Repository:** [More Information Needed]
111
- - **Paper [optional]:** [More Information Needed]
112
- - **Demo [optional]:** [More Information Needed]
113
 
114
  ## Uses
115
 
@@ -129,9 +128,24 @@ session = fo.launch_app(dataset)
129
 
130
  ## Dataset Structure
131
 
132
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
- [More Information Needed]
135
 
136
  ## Dataset Creation
137
 
@@ -191,32 +205,13 @@ session = fo.launch_app(dataset)
191
 
192
  Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
193
 
194
- ## Citation [optional]
195
-
196
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
197
-
198
- **BibTeX:**
199
-
200
- [More Information Needed]
201
-
202
- **APA:**
203
-
204
- [More Information Needed]
205
-
206
- ## Glossary [optional]
207
-
208
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
209
-
210
- [More Information Needed]
211
-
212
- ## More Information [optional]
213
-
214
- [More Information Needed]
215
-
216
- ## Dataset Card Authors [optional]
217
-
218
- [More Information Needed]
219
-
220
- ## Dataset Card Contact
221
 
222
- [More Information Needed]
 
 
 
 
 
 
 
 
44
 
45
  # Note: other available arguments include ''max_samples'', etc
46
 
47
+ dataset = load_from_hub("voxel51/hand-keypoints")
48
 
49
 
50
  # Launch the App
 
82
 
83
  # Load the dataset
84
  # Note: other available arguments include 'max_samples', etc
85
+ dataset = load_from_hub("voxel51/hand-keypoints")
86
 
87
  # Launch the App
88
  session = fo.launch_app(dataset)
 
93
 
94
  ### Dataset Description
95
 
 
96
 
97
+ ![image/png](hands-dataset.gif)
98
 
99
 
100
+
101
+ - **Curated by:** Tomas Simon, Hanbyul Joo, Iain Matthews, Yaser Sheikh
102
+ - **Funded by:** Carnegie Mellon University
103
+ - **Shared by:** [Harpreet Sahota](https://huggingface.co/harpreetsahota), Hacker-in-Residence at Voxel51
104
  - **License:** [More Information Needed]
105
 
106
+ ### Dataset Sources
107
 
108
+ As part of their research, the authors created a dataset by manually annotating two publicly available image sets: the MPII Human Pose dataset and images from the New Zealand Sign Language (NZSL) Exercises. To date, they collected annotations for 1300 hands on the MPII set and 1500 on NZSL. This combined dataset was split into a training set (2000 hands) and a testing set (800 hands)
109
 
110
+ - **Paper:** https://arxiv.org/abs/1704.07809
111
+ - **Demo:** http://domedb.perception.cs.cmu.edu/handdb.html
 
112
 
113
  ## Uses
114
 
 
128
 
129
  ## Dataset Structure
130
 
131
+ ```text
132
+ Name: hand_keypoints
133
+ Media type: image
134
+ Num samples: 846
135
+ Persistent: True
136
+ Tags: []
137
+ Sample fields:
138
+ id: fiftyone.core.fields.ObjectIdField
139
+ filepath: fiftyone.core.fields.StringField
140
+ tags: fiftyone.core.fields.ListField(fiftyone.core.fields.StringField)
141
+ metadata: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.metadata.ImageMetadata)
142
+ created_at: fiftyone.core.fields.DateTimeField
143
+ last_modified_at: fiftyone.core.fields.DateTimeField
144
+ right_hand: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Keypoints)
145
+ body: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Keypoints)
146
+ left_hand: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Keypoints)
147
+ ```
148
 
 
149
 
150
  ## Dataset Creation
151
 
 
205
 
206
  Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
207
 
208
+ ## Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
 
210
+ ```bibtex
211
+ @inproceedings{simon2017hand,
212
+ author = {Tomas Simon and Hanbyul Joo and Iain Matthews and Yaser Sheikh},
213
+ booktitle = {CVPR},
214
+ title = {Hand Keypoint Detection in Single Images using Multiview Bootstrapping},
215
+ year = {2017}
216
+ }
217
+ ```