Update app.py
Browse filesAdding highlight to text
app.py
CHANGED
|
@@ -86,8 +86,12 @@ with gr.Blocks(css=css) as interface:
|
|
| 86 |
submit_btn = gr.Button("Initiate Diagnostic Analysis", elem_classes=["gr-button"])
|
| 87 |
submit_btn.click(fn=predict, inputs=image_input, outputs=output)
|
| 88 |
|
| 89 |
-
gr.Markdown(
|
| 90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
|
| 92 |
gr.Examples(examples=examples, inputs=image_input)
|
| 93 |
|
|
|
|
| 86 |
submit_btn = gr.Button("Initiate Diagnostic Analysis", elem_classes=["gr-button"])
|
| 87 |
submit_btn.click(fn=predict, inputs=image_input, outputs=output)
|
| 88 |
|
| 89 |
+
gr.Markdown(
|
| 90 |
+
'<div style="background-color: yellow; padding: 10px; border-radius: 5px; font-weight: bold;">'
|
| 91 |
+
'Sample Images: To test the model, select one of the sample images provided below. '
|
| 92 |
+
'Click on an image and then press the "Initiate Diagnostic Analysis" button to receive the results.'
|
| 93 |
+
'</div>'
|
| 94 |
+
)
|
| 95 |
|
| 96 |
gr.Examples(examples=examples, inputs=image_input)
|
| 97 |
|