Update app.py
Browse files
app.py
CHANGED
@@ -35,9 +35,10 @@ interface = gr.Interface(
|
|
35 |
outputs=gr.Textbox(),
|
36 |
examples=sample_images, # Preloaded images for testing
|
37 |
title="Bone Fracture Detection",
|
38 |
-
description="Upload an X-ray image or select a sample image to check for fractures."
|
|
|
39 |
)
|
40 |
|
41 |
# Launch the Gradio app
|
42 |
if __name__ == "__main__":
|
43 |
-
interface.launch()
|
|
|
35 |
outputs=gr.Textbox(),
|
36 |
examples=sample_images, # Preloaded images for testing
|
37 |
title="Bone Fracture Detection",
|
38 |
+
description="Upload an X-ray image or select a sample image to check for fractures.",
|
39 |
+
article="<img src='file/instructions.jpg' style='max-width: 100%; height: auto;'>" #Insert instructions image
|
40 |
)
|
41 |
|
42 |
# Launch the Gradio app
|
43 |
if __name__ == "__main__":
|
44 |
+
interface.launch()
|