Spaces:
Running
Running
felixrosberg
commited on
Commit
β’
53d3085
1
Parent(s):
1909f29
Update app.py
Browse files
app.py
CHANGED
@@ -180,14 +180,17 @@ def run_inference(target, source, slider, adv_slider, settings):
|
|
180 |
|
181 |
|
182 |
description = "Performs subject agnostic identity transfer from a source face to all target faces. \n\n" \
|
|
|
|
|
|
|
|
|
183 |
"Options:\n\n" \
|
184 |
"-Compare returns the target image concatenated with the results.\n\n" \
|
185 |
"-Anonymize will ignore the source image and perform an identity permutation of target faces.\n\n" \
|
186 |
"-Reconstruction attack will attempt to invert the face swap or the anonymization.\n\n" \
|
187 |
"-Adversarial defense will add a permutation noise that disrupts the reconstruction attack.\n\n" \
|
188 |
"NOTE: There is no guarantees with the anonymization process currently.\n\n" \
|
189 |
-
"
|
190 |
-
"NOTE, source image with too high resolution may not work properly!"
|
191 |
examples = [["assets/rick.jpg", "assets/musk.jpg", 100, 10, ["compare"]],
|
192 |
["assets/musk.jpg", "assets/musk.jpg", 100, 10, ["anonymize"]]]
|
193 |
article = """
|
|
|
180 |
|
181 |
|
182 |
description = "Performs subject agnostic identity transfer from a source face to all target faces. \n\n" \
|
183 |
+
"Implementation and demo of FaceDancer, accepted to WACV 2023. \n\n" \
|
184 |
+
"Pre-print: https://arxiv.org/abs/2210.10473 \n\n" \
|
185 |
+
"Code: https://github.com/felixrosberg/FaceDancer \n\n" \
|
186 |
+
"\n\n" \
|
187 |
"Options:\n\n" \
|
188 |
"-Compare returns the target image concatenated with the results.\n\n" \
|
189 |
"-Anonymize will ignore the source image and perform an identity permutation of target faces.\n\n" \
|
190 |
"-Reconstruction attack will attempt to invert the face swap or the anonymization.\n\n" \
|
191 |
"-Adversarial defense will add a permutation noise that disrupts the reconstruction attack.\n\n" \
|
192 |
"NOTE: There is no guarantees with the anonymization process currently.\n\n" \
|
193 |
+
"NOTE: source image with too high resolution may not work properly!"
|
|
|
194 |
examples = [["assets/rick.jpg", "assets/musk.jpg", 100, 10, ["compare"]],
|
195 |
["assets/musk.jpg", "assets/musk.jpg", 100, 10, ["anonymize"]]]
|
196 |
article = """
|