CLIPasso / app.py
yael-vinker
Merge branch 'main' of https://huggingface.co/spaces/yaelvinker/CLIPasso into main
3b38618
raw
history blame
200 Bytes
import torch
import gradio as gr
import pydiffvg
import clip
def greet(name):
return "bka" + name + torch.__version__
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()