BigGAN-ImageNET / app.py
merve's picture
merve HF staff
Update app.py
387a31e
raw
history blame
No virus
233 Bytes
import gradio as gr
description = "BigGAN text-to-image demo."
article = ""
interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
description=description,
examples=[["american robin"]]
)
interface.launch()