Spaces:
Runtime error
Runtime error
suresh-subramanian
commited on
Commit
·
d06b8a4
1
Parent(s):
cd794b1
Create new file
Browse files
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()
|