VQGAN_CLIP / app.py
akhaliq's picture
akhaliq HF staff
Create app.py
67bcefa
raw
history blame
253 Bytes
import gradio as gr
title="Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP"
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text",title=title)
iface.launch()