Horus7 commited on
Commit
df3484f
1 Parent(s): e0fc5f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -21,20 +21,17 @@ def detect(img):
21
  img = img/255
22
  prediction = model.predict(img)[0]
23
 
24
- # Définition des seuils pour chaque classe
25
- seuil_infection_bacterienne = 0.5
26
- seuil_poumon_sain = 0.5
27
- seuil_infection_biologique = 0.5
28
 
29
  # Initialisation du texte
30
  texte = ""
31
 
32
  # Détermination du texte et de la couleur pour chaque classe
33
- if format_decimal(prediction[0]) >= seuil_infection_bacterienne:
34
  texte += '<span style="color:red;">Risque d\'infection bactérienne</span><br>'
35
- if format_decimal(prediction[1]) >= seuil_poumon_sain:
36
  texte += '<span style="color:green;">Poumon sain</span><br>'
37
- if format_decimal(prediction[2]) >= seuil_infection_biologique:
38
  texte += '<span style="color:orange;">Risque d\'infection biologique</span><br>'
39
  if texte == "":
40
  texte = "Classe indéterminée"
 
21
  img = img/255
22
  prediction = model.predict(img)[0]
23
 
24
+
 
 
 
25
 
26
  # Initialisation du texte
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"