CLIPasso / app.py
yael-vinker
a
cdd07c8
raw
history blame
154 Bytes
import torch
import gradio as gr
def greet(name):
return "hello" + name
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()