Rezuwan commited on
Commit
7b58798
·
verified ·
1 Parent(s): e9f23cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -118,5 +118,14 @@ examples = [
118
  "test_images/unknown_19.jpg",
119
  ]
120
 
121
- iface = gr.Interface(fn=recognize_image, inputs=image, outputs=label, examples=examples)
 
 
 
 
 
 
 
 
 
122
  iface.launch(inline=False)
 
118
  "test_images/unknown_19.jpg",
119
  ]
120
 
121
+ iface = gr.Interface(fn=recognize_image,
122
+ inputs=image,
123
+ outputs=label,
124
+ examples=examples,
125
+ title="Parrot60 Classifier",
126
+ description=(
127
+ f"""This classifier's API is also integrated to another [{website}](https://parrot-classifier-60.netlify.app/).
128
+ This classifier can classify 60 parrot species with 93% accuracy."""
129
+ )
130
+ )
131
  iface.launch(inline=False)