Horus7 commited on
Commit
123fdcc
1 Parent(s): 1f0edc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -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)
 
52
 
53
  title = "PneumoDetect: Detection de pneumonie par x-ray"
54
 
55
+ iface = gr.Interface(fn=detect, inputs=input, outputs=[gr.Textbox(label="Diagnostic", lines=3)],examples = examples, examples_per_page=20, title=title)
56
  iface.launch(inline=False)