nateraw commited on
Commit
f855a45
·
1 Parent(s): 080d933

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -8,9 +8,10 @@ task_categories:
8
  task_ids:
9
  - other-image-classification
10
  - image-classification
 
11
  ---
12
 
13
- # Dataset Card for Fairface
14
 
15
  ## Table of Contents
16
  - [Dataset Description](#dataset-description)
@@ -38,7 +39,7 @@ task_ids:
38
 
39
  ## Dataset Description
40
 
41
- - **Repository:** [Fairface repository](https://github.com/joojs/fairface)
42
  - **Paper:** [FairFace: Face Attribute Dataset for Balanced Race, Gender, and Age](https://arxiv.org/abs/1908.04913)
43
 
44
  ### Dataset Summary
@@ -50,4 +51,15 @@ Existing public face datasets are strongly biased toward Caucasian faces, and ot
50
  - img_bytes: Bytes representing an image
51
  - age: Age of the person in the image
52
  - gender: Gender of the person in the image
53
- - race: Race of the person in the image
 
 
 
 
 
 
 
 
 
 
 
 
8
  task_ids:
9
  - other-image-classification
10
  - image-classification
11
+ paperswithcodeid: fairface-face-attribute-dataset-for-balanced
12
  ---
13
 
14
+ # Dataset Card for FairFace
15
 
16
  ## Table of Contents
17
  - [Dataset Description](#dataset-description)
 
39
 
40
  ## Dataset Description
41
 
42
+ - **Repository:** [FairFace repository](https://github.com/joojs/fairface)
43
  - **Paper:** [FairFace: Face Attribute Dataset for Balanced Race, Gender, and Age](https://arxiv.org/abs/1908.04913)
44
 
45
  ### Dataset Summary
 
51
  - img_bytes: Bytes representing an image
52
  - age: Age of the person in the image
53
  - gender: Gender of the person in the image
54
+ - race: Race of the person in the image
55
+
56
+ ### Data Instances
57
+
58
+ ```
59
+ {
60
+ 'age': 6,
61
+ 'gender': 1,
62
+ 'img_bytes': b'\xff\xd8...',
63
+ 'race': 1
64
+ }
65
+ ```