import os import gradio as gr from PIL import Image os.system("git clone https://github.com/AK391/projected_gan.git") os.chdir("projected_gan") os.mkdir("outputs") def inference(seeds): os.system("python gen_images.py --outdir=./outputs/ --seeds="+str(int(seeds))+" --network=https://s3.eu-central-1.amazonaws.com/avg-projects/projected_gan/models/pokemon.pkl") seeds = int(seeds) image = Image.open(f"./outputs/seed{seeds:04d}.png") return image title = "Projected GAN" description = "Gradio demo for Projected GANs Converge Faster, Pokemon. To use it, add seed, or click one of the examples to load them. Read more at the links below." article = "

Projected GANs Converge Faster | Github Repo

visitor badge
" gr.Interface(inference,gr.inputs.Slider(label="Seed",minimum=0, maximum=1000, step=1, default=0),"pil",title=title,description=description,article=article, examples=[ [42] ]).launch(enable_queue=True,cache_examples=True)