EddyGiusepe's picture
Update app.py
05b9ae9
import gradio as gr
description = "BigGAN text-to-image demo."
title = "BigGAN ImageNet"
interface = gr.Interface.load(
"huggingface.co/osanseviero/BigGAN-deep-128",
description=description,
title = title,
examples=[["american robin"], ["chest"], ["soap bubble"]]
)
interface.launch()