Spaces:
Running
Running
Add a to learn more URL at the bottom of the app linking to GitHub and TreeOfLife dataset
Browse files
app.py
CHANGED
|
@@ -279,6 +279,16 @@ if __name__ == "__main__":
|
|
| 279 |
inputs=[img_input, classes_txt],
|
| 280 |
outputs=zero_shot_output,
|
| 281 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 282 |
|
| 283 |
app.queue(max_size=20)
|
| 284 |
app.launch()
|
|
|
|
| 279 |
inputs=[img_input, classes_txt],
|
| 280 |
outputs=zero_shot_output,
|
| 281 |
)
|
| 282 |
+
|
| 283 |
+
# Footer to point out to model and data from app page.
|
| 284 |
+
gr.Markdown(
|
| 285 |
+
"""
|
| 286 |
+
For more information on the [BioCLIP Model](https://huggingface.co/imageomics/bioclip) creation, see our [BioCLIP Project GitHub](https://github.com/Imageomics/bioclip), and
|
| 287 |
+
for easier integration of BioCLIP, checkout [pybioclip](https://github.com/Imageomics/pybioclip).
|
| 288 |
+
|
| 289 |
+
To learn more about the data, check out our [TreeOfLife-10M Dataset](https://huggingface.co/datasets/imageomics/TreeOfLife-10M).
|
| 290 |
+
"""
|
| 291 |
+
)
|
| 292 |
|
| 293 |
app.queue(max_size=20)
|
| 294 |
app.launch()
|