suresh-subramanian commited on
Commit
d06b8a4
·
1 Parent(s): cd794b1

Create new file

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Set gradio interface
4
+ gr_interface = gr.Interface(classify, inputs='image', outputs='label', title='Bean Classification', description='Monitor your crops health in easier way')
5
+ # Launch gradio
6
+ gr_interface.launch()