Horus7 commited on
Commit
9100cce
1 Parent(s): df3484f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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"