demo_1 / app.py
ChaoChao2023's picture
Update app.py
8be36f4
raw
history blame
291 Bytes
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"]]
)
interface.launch()