import gradio as gr VALID_CHOICES = [ "Bald", "Young", "Mustache", "Eyeglasses", "Hat", "Smiling", "Gender", "Beard" ] 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 CVPR2020 InterfaceGAN paper, by adding other attributes such as Hat, Bald, etc. to the generated images. Here is a step-by-step guide to use this interface: Check the original repo as well as the extended version of the work.

"""