BigGAN / app2.py
Chun-Hao Liu
multiple testing gradio apps
c79dec1
raw
history blame contribute delete
326 Bytes
import gradio as gr
from huggingface_hub import login
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()