kevincluo commited on
Commit
ead77c4
·
1 Parent(s): b5716dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -24,7 +24,9 @@ import gradio as gr
24
  interface = gr.Interface(
25
  fn=classify,
26
  inputs="image",
27
- outputs="label"
 
 
28
  )
29
 
30
- interface.launch(debug=True)
 
24
  interface = gr.Interface(
25
  fn=classify,
26
  inputs="image",
27
+ outputs="label",
28
+ title="Bean Leaf Disease Classifier",
29
+ description="Upload Your Bean Leaf Pic Here"
30
  )
31
 
32
+ interface.launch()