VQGAN_CLIP / app.py
akhaliq's picture
akhaliq HF staff
Update app.py
49e1c29
raw history blame
No virus
358 Bytes
import gradio as gr
description="<a href='https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP' target='_blank'>Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP</a></p>"
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text",description=description)
iface.launch()