feng2022's picture
Update app.py
d32f0cd
raw
history blame
338 Bytes
import gradio as gr
from transformers import BertTokenizer,BertModel
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()