Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,31 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-sa-4.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-sa-4.0
|
3 |
+
viewer: false
|
4 |
+
---
|
5 |
+
|
6 |
+
# NullFace: Training-Free Localized Face Anonymization
|
7 |
+
|
8 |
+
## Test set
|
9 |
+
|
10 |
+
We curated a subset of test subjects from the [CelebA-HQ](https://github.com/tkarras/progressive_growing_of_gans) and [FFHQ](https://github.com/NVlabs/ffhq-dataset) datasets for the quantitative comparisons against baseline methods in our paper. Specifically, we selected:
|
11 |
+
- 4,852 images from [CelebA-HQ](https://github.com/tkarras/progressive_growing_of_gans)
|
12 |
+
- 4,722 images from [FFHQ](https://github.com/NVlabs/ffhq-dataset)
|
13 |
+
|
14 |
+
For each test subject, we generated a corresponding segmentation mask, which is designed to keep the eye and mouth areas visible when needed.
|
15 |
+
|
16 |
+
The test subject lists (JSONL format) and segmentation masks can be downloaded in the following structure:
|
17 |
+
|
18 |
+
```bash
|
19 |
+
nullface-test-set/
|
20 |
+
βββ celeba-hq/
|
21 |
+
β βββ mask_images/
|
22 |
+
β β βββ 00010.png
|
23 |
+
β β βββ ...
|
24 |
+
β βββ metadata.jsonl
|
25 |
+
βββ ffhq/
|
26 |
+
β βββ mask_images/
|
27 |
+
β β βββ 00010.png
|
28 |
+
β β βββ ...
|
29 |
+
β βββ metadata.jsonl
|
30 |
+
βββ README.md
|
31 |
+
```
|