Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ theme = gr.themes.Soft(
|
|
20 |
|
21 |
css = """
|
22 |
#warning {background-color: #FFCCCB}
|
23 |
-
.
|
24 |
"""
|
25 |
|
26 |
# Désactiver GPU et logs TensorFlow
|
@@ -419,7 +419,7 @@ with gr.Blocks(theme=theme, title="Analyse de lésions", css=css) as demo:
|
|
419 |
gr.Examples(examples=example_paths, inputs=input_image)
|
420 |
with gr.Column(scale=2):
|
421 |
output_label = gr.Label(label="📊 Diagnostic global")
|
422 |
-
output_text = gr.Label(label=" Explication", elem_classes="
|
423 |
output_plot = gr.Plot(label="📈 Probabilités")
|
424 |
output_gradcam = gr.Image(label="🔍 Visualisation Grad-CAM")
|
425 |
output_status = gr.Textbox(label="Statut", interactive=False)
|
|
|
20 |
|
21 |
css = """
|
22 |
#warning {background-color: #FFCCCB}
|
23 |
+
.feedback {font-size: 16px !important;}
|
24 |
"""
|
25 |
|
26 |
# Désactiver GPU et logs TensorFlow
|
|
|
419 |
gr.Examples(examples=example_paths, inputs=input_image)
|
420 |
with gr.Column(scale=2):
|
421 |
output_label = gr.Label(label="📊 Diagnostic global")
|
422 |
+
output_text = gr.Label(label=" Explication", elem_classes="feedback")
|
423 |
output_plot = gr.Plot(label="📈 Probabilités")
|
424 |
output_gradcam = gr.Image(label="🔍 Visualisation Grad-CAM")
|
425 |
output_status = gr.Textbox(label="Statut", interactive=False)
|