test_gradio_2 / app.py
osanseviero's picture
osanseviero HF staff
Create app.py
69dbcee
import gradio as gr
description = "BigGAN text-to-image demo."
title = "BigGAN ImageNet"
interface = gr.Interface.load(
"huggingface/osanseviero/BigGAN-deep-128",
description=description,
title = title,
examples=[["american robin"], ["chest"], ["soap bubble"]]
)
interface.launch()