ma4389 commited on
Commit
6fa32dd
·
verified ·
1 Parent(s): 2ec498a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
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="Upload an X-ray image to detect types of human bone fractures using YOLOv8."
 
 
 
 
 
32
  )
33
 
34
- if __name__ == "__main__":
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()