mibarguen commited on
Commit
522b898
1 Parent(s): 0257c88

Upload beans leaf classifier

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,6 +19,6 @@ def classify(im):
19
 
20
  import gradio as gr
21
 
22
- interface = gr.Interface(fn=classify, inputs=gr.Image(shape=(224, 224)), outputs="text")
23
 
24
- interface.launch(debug=True, share=True)
19
 
20
  import gradio as gr
21
 
22
+ interface = gr.Interface(fn=classify, inputs='image', outputs="text")
23
 
24
+ interface.launch(debug=True)