lyimo commited on
Commit
62d15f5
·
verified ·
1 Parent(s): 77a89ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -16,8 +16,15 @@ def predict(img):
16
  #title = "Common beans diseases classfier"
17
  #description = "An app for Common beans diseases Classisfication"
18
  #article="<p style='text-align: center'>The app identifies and classifies common beans diseases: Anthracnose and Bean rust.</p>"
19
- examples = ['image.jpeg']
20
- interpretation='default'
21
- enable_queue=True
 
 
 
22
 
23
- gr.Interface(fn=predict,inputs=gr.Image(),outputs=gr.Label(num_top_classes=3),interpretation=interpretation,enable_queue=enable_queue).launch()
 
 
 
 
 
16
  #title = "Common beans diseases classfier"
17
  #description = "An app for Common beans diseases Classisfication"
18
  #article="<p style='text-align: center'>The app identifies and classifies common beans diseases: Anthracnose and Bean rust.</p>"
19
+ # Create the Gradio interface
20
+ interface = gr.Interface(
21
+ fn=predict,
22
+ inputs=gr.Image(),
23
+ outputs=gr.Label(num_top_classes=3)
24
+ )
25
 
26
+ # Enable the queue to handle POST requests
27
+ interface.queue(api_open=True)
28
+
29
+ # Launch the interface
30
+ interface.launch()