Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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,
|
145 |
-
|
146 |
-
|
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)
|