Update app.py
Browse files
app.py
CHANGED
@@ -21,14 +21,13 @@ interface = gr.Interface(fn=generate_prescription,
|
|
21 |
title="FarmScan",
|
22 |
description="Add/Upload an image of your produce (vegetable or fruits) and learn about its shelf life, ripening period, market time, best time to harvest and best market to sell.",
|
23 |
allow_flagging="never",
|
24 |
-
gr.Examples(
|
25 |
examples = [
|
26 |
["examples/green_tomato.jpeg"],
|
27 |
["examples/onion.jpeg"],
|
28 |
["examples/onion_potato.jpeg"],
|
29 |
["examples/vegies.jpeg"],
|
30 |
|
31 |
-
])
|
32 |
|
33 |
if __name__ == "__main__":
|
34 |
interface.launch()
|
|
|
21 |
title="FarmScan",
|
22 |
description="Add/Upload an image of your produce (vegetable or fruits) and learn about its shelf life, ripening period, market time, best time to harvest and best market to sell.",
|
23 |
allow_flagging="never",
|
|
|
24 |
examples = [
|
25 |
["examples/green_tomato.jpeg"],
|
26 |
["examples/onion.jpeg"],
|
27 |
["examples/onion_potato.jpeg"],
|
28 |
["examples/vegies.jpeg"],
|
29 |
|
30 |
+
])
|
31 |
|
32 |
if __name__ == "__main__":
|
33 |
interface.launch()
|