Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rpa45
/
ai_hands_classifier
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a91cddc
ai_hands_classifier
/
app.py
rpa45
added app.py
a91cddc
over 2 years ago
raw
Copy download link
history
blame
161 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hey "
+name+
"!!"
iface = gr.Interface(
fn=greet,
inputs=
'text'
,
outputs=
'text'
)
iface.launch()