awacke1's picture
Update app.py
2ac9c48
raw history blame
No virus
518 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=[
["lighthouse"],
["eyeglasses"],
["stool"],
["window"],
["hand"],
["dice"],
["cloud"],
["gate"],
["cat"],
["toes"]
]
)
interface.launch()