Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yaelvinker
/
CLIPasso
like
3
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
cdd07c8
CLIPasso
/
app.py
yael-vinker
a
cdd07c8
over 2 years ago
raw
Copy download link
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()