Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Roblox
/
basebody
like
0
Runtime error
App
Files
Files
Community
4ec8ee1
basebody
/
app.py
hwajjala
Add requirements and model files
194b093
about 1 year ago
raw
Copy download link
history
blame
Safe
193 Bytes
import
clip
import
torch
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+
"!!"
iface = gr.Interface(fn=greet, inputs=
"image"
, outputs=
"text"
, allow_flagging=
"manual"
)
iface.launch()