Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Solutrian
/
RobotDetector
like
0
Runtime error
App
Files
Files
Community
9da6783
RobotDetector
/
app.py
Solutrian
first
9da6783
almost 2 years ago
raw
Copy download link
history
blame
Safe
170 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Greetings person called "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()