meetsuki commited on
Commit
3d06034
1 Parent(s): bf8a4a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -21,9 +21,9 @@ i = gr.inputs.Image()
21
  o = gr.outputs.Textbox()
22
 
23
  examples = [["./examples/tulip.jpg"], ["./examples/daisy.jpg"], ["./examples/dandelion.jpg"], ["./examples/rose.jpg"], ["./examples/sunflower.jpg"]]
24
- title = "Flowers Classification MobileViT"
25
- description = "Upload an image or select from examples 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 George</a></div>"
28
  gr.Interface(classify_images, i, o, allow_flagging=False, analytics_enabled=False,
29
  title=title, examples=examples, description=description, article=article).launch(enable_queue=True)
 
21
  o = gr.outputs.Textbox()
22
 
23
  examples = [["./examples/tulip.jpg"], ["./examples/daisy.jpg"], ["./examples/dandelion.jpg"], ["./examples/rose.jpg"], ["./examples/sunflower.jpg"]]
24
+ title = "Flowers 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>"
28
  gr.Interface(classify_images, i, o, allow_flagging=False, analytics_enabled=False,
29
  title=title, examples=examples, description=description, article=article).launch(enable_queue=True)