Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sovitrath
/
pothole_yolov8_nano
like
11
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
5f571da
pothole_yolov8_nano
/
app.py
sovitrath
Share True
5f571da
about 2 years ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)