Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,11 +28,11 @@ def detect(img):
|
|
28 |
|
29 |
# Détermination du texte et de la couleur pour chaque classe
|
30 |
if format_decimal(prediction[0]) >= "0.5":
|
31 |
-
texte += '
|
32 |
if format_decimal(prediction[1]) >= "0.5":
|
33 |
-
texte += '
|
34 |
if format_decimal(prediction[2]) >= "0.5":
|
35 |
-
texte += '
|
36 |
if texte == "":
|
37 |
texte = "Classe indéterminée"
|
38 |
|
@@ -52,5 +52,5 @@ input = gr.inputs.Image(shape=(100,100))
|
|
52 |
|
53 |
title = "PneumoDetect: Detection de pneumonie par x-ray"
|
54 |
|
55 |
-
iface = gr.Interface(fn=detect, inputs=input, outputs="text",examples = examples, examples_per_page=20, title=title
|
56 |
iface.launch(inline=False)
|
|
|
28 |
|
29 |
# Détermination du texte et de la couleur pour chaque classe
|
30 |
if format_decimal(prediction[0]) >= "0.5":
|
31 |
+
texte += 'Risque d\'infection bactérienne'
|
32 |
if format_decimal(prediction[1]) >= "0.5":
|
33 |
+
texte += 'Poumon sain'
|
34 |
if format_decimal(prediction[2]) >= "0.5":
|
35 |
+
texte += 'Risque d\'infection biologique'
|
36 |
if texte == "":
|
37 |
texte = "Classe indéterminée"
|
38 |
|
|
|
52 |
|
53 |
title = "PneumoDetect: Detection de pneumonie par x-ray"
|
54 |
|
55 |
+
iface = gr.Interface(fn=detect, inputs=input, outputs="text",examples = examples, examples_per_page=20, title=title)
|
56 |
iface.launch(inline=False)
|