hedrergudene commited on
Commit
1c429e4
1 Parent(s): a04d4c8

update readme.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Introduction
2
+
3
+ Face Synthetics dataset is a collection of diverse synthetic face images with ground truth labels.
4
+
5
+ It was introduced in our paper Fake It Till You Make It: Face analysis in the wild using synthetic data alone.
6
+
7
+ Our dataset contains:
8
+
9
+ 100,000 images of faces at 512 x 512 pixel resolution
10
+ 70 standard facial landmark annotations
11
+ per-pixel semantic class anotations
12
+ It can be used to train machine learning systems for face-related tasks such as landmark localization and face parsing, showing that synthetic data can both match real data in accuracy as well as open up new approaches where manual labelling would be impossible.
13
+
14
+ Some images also include hands and off-center distractor faces in addition to primary faces centered in the image.
15
+
16
+ The Face Synthetics dataset can be used for non-commercial research, and is licensed under the license found in LICENSE.txt.
17
+
18
+ # Dataset Layout
19
+ The Face Synthetics dataset is a single .zip file containing color images, segmentation images, and 2D landmark coordinates in a text file.
20
+ ```markdown
21
+ dataset.zip
22
+ |
23
+ |- {frame_id}.png # Rendered image of a face
24
+ |- {frame_id}_seg.pmg # Segmentation image
25
+ |- {frame_id}_ldmks.txt # Landmark annotations for 70 facial landmarks (x,y)
26
+ ```
27
+
28
+ # Download
29
+ A small subset of the original dataset can be found here; in order to train models in the entire dataset, please refer to [Microsoft original repo](https://github.com/microsoft/FaceSynthetics).