Spaces:
Sleeping
Sleeping
Theivaprakasham Hari
commited on
Commit
•
8321b44
1
Parent(s):
8fda66b
app add
Browse files
app.py
CHANGED
@@ -183,13 +183,13 @@ if __name__ == "__main__":
|
|
183 |
if done != total:
|
184 |
status_msg = f"{done}/{total} ({done / total * 100:.1f}%) indexed"
|
185 |
|
186 |
-
with gr.Blocks(title='Global Species Identifier: Powered by Artificial Intelligence',
|
187 |
|
188 |
gr.Markdown(
|
189 |
"""Upload an image of any plant, animal, or other organism, and our Artificial Intelligence-powered tool will identify the species. Our database covers species from around the world, aiming to support biodiversity awareness and conservation efforts.
|
190 |
|
191 |
Features include:
|
192 |
-
- **Instant identification** of plants, animals, and other organisms.
|
193 |
- **Detailed information** on species taxonomy.
|
194 |
- An **interactive, user-friendly interface** designed for both experts and enthusiasts.
|
195 |
- **Continuous learning and improvement** of AI models to expand the app's knowledge base and accuracy.
|
@@ -271,5 +271,8 @@ if __name__ == "__main__":
|
|
271 |
outputs=zero_shot_output,
|
272 |
)
|
273 |
|
|
|
|
|
|
|
274 |
app.queue(max_size=20)
|
275 |
-
app.launch(show_api=
|
|
|
183 |
if done != total:
|
184 |
status_msg = f"{done}/{total} ({done / total * 100:.1f}%) indexed"
|
185 |
|
186 |
+
with gr.Blocks(title='Global Species Identifier: Powered by Artificial Intelligence', css="footer {visibility: hidden}", js=js) as app:
|
187 |
|
188 |
gr.Markdown(
|
189 |
"""Upload an image of any plant, animal, or other organism, and our Artificial Intelligence-powered tool will identify the species. Our database covers species from around the world, aiming to support biodiversity awareness and conservation efforts.
|
190 |
|
191 |
Features include:
|
192 |
+
- **Instant identification** of plants, animals, and other organisms world-wide with high accuracy.
|
193 |
- **Detailed information** on species taxonomy.
|
194 |
- An **interactive, user-friendly interface** designed for both experts and enthusiasts.
|
195 |
- **Continuous learning and improvement** of AI models to expand the app's knowledge base and accuracy.
|
|
|
271 |
outputs=zero_shot_output,
|
272 |
)
|
273 |
|
274 |
+
gr.Markdown(
|
275 |
+
"""Built by **Theivaprakasham Hari** (https://www.linkedin.com/in/theivaprakasham/)""")
|
276 |
+
|
277 |
app.queue(max_size=20)
|
278 |
+
app.launch(show_api=False)
|