VQGAN_CLIP / app.py
akhaliq's picture
akhaliq HF staff
Update app.py
9a0b295
import gradio as gr
description="[Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP](https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP)"
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text",description=desription)
iface.launch()