Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -27,11 +27,11 @@ def detect(img):
|
|
27 |
texte = ""
|
28 |
|
29 |
# Détermination du texte et de la couleur pour chaque classe
|
30 |
-
if format_decimal(prediction[0]) >= 0.5:
|
31 |
texte += '<span style="color:red;">Risque d\'infection bactérienne</span><br>'
|
32 |
-
if format_decimal(prediction[1]) >= 0.5:
|
33 |
texte += '<span style="color:green;">Poumon sain</span><br>'
|
34 |
-
if format_decimal(prediction[2]) >= 0.5:
|
35 |
texte += '<span style="color:orange;">Risque d\'infection biologique</span><br>'
|
36 |
if texte == "":
|
37 |
texte = "Classe indéterminée"
|
|
|
27 |
texte = ""
|
28 |
|
29 |
# Détermination du texte et de la couleur pour chaque classe
|
30 |
+
if format_decimal(prediction[0]) >= "0.5":
|
31 |
texte += '<span style="color:red;">Risque d\'infection bactérienne</span><br>'
|
32 |
+
if format_decimal(prediction[1]) >= "0.5":
|
33 |
texte += '<span style="color:green;">Poumon sain</span><br>'
|
34 |
+
if format_decimal(prediction[2]) >= "0.5":
|
35 |
texte += '<span style="color:orange;">Risque d\'infection biologique</span><br>'
|
36 |
if texte == "":
|
37 |
texte = "Classe indéterminée"
|