marcelcastrobr's picture
Adding image search
22377ec
raw history blame
No virus
329 Bytes
import gradio as gr
#Example from https://huggingface.co/spaces/merve/BigGAN-ImageNET
description = "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()