Horus7 commited on
Commit
1f0edc1
1 Parent(s): 73befa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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 += '<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"
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, interpret_html=True)
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)