Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,8 +28,13 @@ iface = gr.Interface(
|
|
| 28 |
inputs=gr.Image(type="filepath", label="Upload Bone X-ray"),
|
| 29 |
outputs=gr.Image(type="numpy", label="Detection Result"),
|
| 30 |
title="Human Bone Fracture Detection",
|
| 31 |
-
description=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
)
|
| 33 |
|
| 34 |
-
if __name__ ==
|
| 35 |
iface.launch()
|
|
|
|
| 28 |
inputs=gr.Image(type="filepath", label="Upload Bone X-ray"),
|
| 29 |
outputs=gr.Image(type="numpy", label="Detection Result"),
|
| 30 |
title="Human Bone Fracture Detection",
|
| 31 |
+
description=(
|
| 32 |
+
"Upload an X-ray image to detect human bone fractures using YOLOv8.<br><br>"
|
| 33 |
+
"📸 **Dataset Source:** "
|
| 34 |
+
"<a href='https://www.kaggle.com/datasets/orvile/human-bone-fractures-image-dataset-hbfmid' target='_blank'>"
|
| 35 |
+
"Human Bone Fractures Image Dataset (HBFMID)</a>"
|
| 36 |
+
)
|
| 37 |
)
|
| 38 |
|
| 39 |
+
if __name__ == '__main__':
|
| 40 |
iface.launch()
|