Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Solutrian
/
RobotDetector
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4c480b7
RobotDetector
/
app.py
Solutrian
first
9da6783
over 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()