Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -40,6 +40,8 @@ def frontalize(image):
|
|
40 |
return generated_image
|
41 |
|
42 |
iface = gr.Interface(frontalize, gr.inputs.Image(type="numpy"), "image",
|
|
|
|
|
43 |
examples=["amos.png", "clarissa.png"],
|
44 |
)
|
45 |
iface.launch()
|
|
|
40 |
return generated_image
|
41 |
|
42 |
iface = gr.Interface(frontalize, gr.inputs.Image(type="numpy"), "image",
|
43 |
+
title='Face Frontalization',
|
44 |
+
description='PyTorch implementation of a supervised GAN (see <a href="https://blog.scaleway.com/gpu-instances-using-deep-learning-to-obtain-frontal-rendering-of-facial-images/">blog post</a>)',
|
45 |
examples=["amos.png", "clarissa.png"],
|
46 |
)
|
47 |
iface.launch()
|