Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,10 +18,10 @@ def classify_images(image):
|
|
18 |
return text_output
|
19 |
|
20 |
i = gr.inputs.Image()
|
21 |
-
o = gr.outputs.Textbox(lines =2,
|
22 |
|
23 |
examples = [["./examples/tulip.jpg"], ["./examples/daisy.jpg"], ["./examples/dandelion.jpg"], ["./examples/rose.jpg"], ["./examples/sunflower.jpg"]]
|
24 |
-
title = "
|
25 |
description = "Upload an image or Select from the examples below to classify flowers : "
|
26 |
|
27 |
article = "<div style='text-align: center;'><a href='https://www.linkedin.com/in/suryakiran-mg/' target='_blank'> Space by Suryakiran </a></div>"
|
|
|
18 |
return text_output
|
19 |
|
20 |
i = gr.inputs.Image()
|
21 |
+
o = gr.outputs.Textbox(lines =2, label="Flower Name")
|
22 |
|
23 |
examples = [["./examples/tulip.jpg"], ["./examples/daisy.jpg"], ["./examples/dandelion.jpg"], ["./examples/rose.jpg"], ["./examples/sunflower.jpg"]]
|
24 |
+
title = "Flower Recognition Using Transfer Learning"
|
25 |
description = "Upload an image or Select from the examples below to classify flowers : "
|
26 |
|
27 |
article = "<div style='text-align: center;'><a href='https://www.linkedin.com/in/suryakiran-mg/' target='_blank'> Space by Suryakiran </a></div>"
|