CLIPasso / .ipynb_checkpoints /app-checkpoint.py
yael-vinker
a
9a2e588
raw
history blame contribute delete
202 Bytes
import torch
import gradio as gr
import pydiffvg
import clip
def greet(name):
return "hello" + name + torch.__version__
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()