qmjnh commited on
Commit
24120e7
1 Parent(s): 17ff198

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -61,4 +61,17 @@ UI=gr.Interface(fn=image_to_output,
61
  outputs=gradio_label(num_top_classes=5),
62
  interpretation="default"
63
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  UI.launch(share=True)
 
61
  outputs=gradio_label(num_top_classes=5),
62
  interpretation="default"
63
  )
64
+
65
+
66
+ description = "This model was trained to recognize 102 types of flowers. For the model to work with high accuracy, refer to the trained flowers [here](https://google.com)"
67
+
68
+ UI=gr.Interface(fn=image_to_output,
69
+ inputs=gradio_image(shape=(224,224)),
70
+ outputs=gradio_label(num_top_classes=5),
71
+ interpretation="default",
72
+ description=description,
73
+ title="Flower Classifier",
74
+ article="*built by qmjnh*"
75
+ )
76
+
77
  UI.launch(share=True)