nprasad24 commited on
Commit
0caec8b
·
verified ·
1 Parent(s): 8b533f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -141,8 +141,11 @@ def main(image):
141
 
142
  title = "Bean Classifier and Instructor"
143
  description = "Professor Bean is an agricultural expert. He will guide you on how to protect your plants from bean diseases"
144
- app = gr.Interface(fn=main, inputs="image", outputs="text", title=title,
145
- description=description
146
- examples=[["sampleImages/sample1.jpg"], ["sampleImages/sample2.jpg"],["sampleImages/sample3.jpg"]]
147
- )
 
 
 
148
  app.launch(share=True)
 
141
 
142
  title = "Bean Classifier and Instructor"
143
  description = "Professor Bean is an agricultural expert. He will guide you on how to protect your plants from bean diseases"
144
+ app = gr.Interface(fn=main,
145
+ inputs="image",
146
+ outputs="text",
147
+ title=title,
148
+ description=description,
149
+ examples=[["sampleImages/sample1.jpg"], ["sampleImages/sample2.jpg"],["sampleImages/sample3.jpg"]]
150
+ )
151
  app.launch(share=True)