File size: 2,248 Bytes
b260763
 
 
 
 
 
 
 
 
393039b
37f377e
 
 
 
 
 
 
 
 
b260763
 
 
 
 
 
 
 
37f377e
cf3577e
 
 
 
 
37f377e
b7c177d
b260763
 
7bf4347
cf3577e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7bf4347
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import gradio as gr

VALID_CHOICES = [
    "Bald",
    "Young",
    "Mustache",
    "Eyeglasses",
    "Hat",
    "Smiling",
    "Male",
    "Beard",
    "Gray_Hair",
    "Goatee",
    "Brown_Hair",
    "Blond_Hair",
    "Straight_Hair",
    "Wavy_Hair",
    "Wearing_Earrings",
    "Wearing_Necklace",
]
ENABLE_GPU = False
MODEL_NAME = "stylegan_ffhq"
OUTPUT_LIST = [
    gr.outputs.Image(type="pil", label="Generated Images"),
    gr.outputs.Image(type="pil", label="Modified Images"),
]
description = """
This is an interactive demo of an extension of the <a href="https://genforce.github.io/interfacegan/">CVPR2020 InterfaceGAN paper</a>, by adding other attributes such as Hat, Bald, etc. to the generated images. Here is a step-by-step guide to use this interface: 
  + 🌾 Select the Random seed you want to use to generate the images  
  + &#128450; Select the list of attributes you want to modify (of course, you can mix several attributes)  
  + πŸ›  Select the coefficient of modification (higher value means stronger modification)  
  + πŸ”₯ Submit!  

Check the <a href="https://github.com/genforce/interfacegan">original repo</a> as well as the <a href="https://github.com/younesbelkada/interfacegan">extended version of the work</a>.

</center>
</p>
"""
# description = """
# <p>
# <center>
# <style type="text/css">
#  .nobull {
#   list-style-type: none;
#  }
# </style>
# This is an interactive demo of an extension of the <a href="https://genforce.github.io/interfacegan/">CVPR2020 InterfaceGAN paper</a>, by adding other attributes such as Hat, Bald, etc. to the generated images. Here is a step-by-step guide to use this interface: 
# <ul style="nobull">
#   <li>🌾 Select the Random seed you want to use to generate the images</li>
#   <li>&#128450; Select the list of attributes you want to modify (of course, you can mix several attributes)</li>
#   <li>πŸ›  Select the coefficient of modification (higher value means stronger modification)</li>
#   <li>πŸ”₯ Submit!</li>
# </ul>
# Check the <a href="https://github.com/genforce/interfacegan">original repo</a> as well as the <a href="https://github.com/younesbelkada/interfacegan">extended version of the work</a>.

# </center>
# </p>
# """
title = "InterfaceGAN++ Demo"