feng2022's picture
Update app.py
da3e368
raw
history blame
330 Bytes
import gradio as gr
description = "BigGAN text-to-image demo."
title = "BigGAN ImageNet"
stylegan2_pytorch --data /path/to/images
interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
description=description,
title = title,
examples=[["american robin"]]
)
interface.launch()