Clementapa
commited on
Commit
•
8c485d9
1
Parent(s):
4cab8ec
rename space
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
colorFrom: green
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
+
title: AI for Orangutan Ecosystem Surveillance
|
3 |
+
emoji: 🦧🔍
|
4 |
colorFrom: green
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
app.py
CHANGED
@@ -15,13 +15,13 @@ MARKDOWN = """
|
|
15 |
<h1 style="text-align: center;"> WildGuardian: AI for Orangutan Ecosystem Surveillance 🦧🔍 </h1>
|
16 |
|
17 |
## About the model 👁️
|
18 |
-
This is a demo for my YOLOv8 nano trained for
|
19 |
-
The model was trained using only ~1000 images of
|
20 |
Annotations were obtained using zero shot object detection method GroundingDino.\
|
21 |
|
22 |
-
The full pipeline can be found on my github repository: https://github.com/clementapa/
|
23 |
|
24 |
-
## About the
|
25 |
Because to habitat destruction, illicit poaching, and the pet trade, orangutans are in danger of going extinct. Their natural habitat has been significantly reduced by deforestation and the growth of palm oil plantations. Adult orangutans are occasionally sought for their body parts, and they are frequently captured and sold as pets. Climate change and disease are also taking a toll on their populations. Furthermore, it is concerning to note that they are limited to Borneo and Sumatra, two places on Earth. Sustainable practises and conservation initiatives are crucial to preventing the permanent extinction of these amazing animals.
|
26 |
|
27 |
## AI for good 🌍
|
@@ -184,7 +184,7 @@ with gr.Blocks(theme=custom_theme, css="style.css") as demo:
|
|
184 |
confidence_image_slider = gr.Slider(
|
185 |
label="Confidence", minimum=0.1, maximum=1.0, step=0.05, value=0.6
|
186 |
)
|
187 |
-
submit_button_image = gr.Button("Let's find
|
188 |
output_image = gr.Image(label="Results", type="pil")
|
189 |
|
190 |
with gr.Tab("Detect on a video 📹"):
|
@@ -209,7 +209,7 @@ with gr.Blocks(theme=custom_theme, css="style.css") as demo:
|
|
209 |
confidence_video_slider = gr.Slider(
|
210 |
label="Confidence", minimum=0.1, maximum=1.0, step=0.05, value=0.6
|
211 |
)
|
212 |
-
submit_button_video = gr.Button("Let's find
|
213 |
output_video = gr.Video(label="Results")
|
214 |
|
215 |
submit_button_image.click(
|
|
|
15 |
<h1 style="text-align: center;"> WildGuardian: AI for Orangutan Ecosystem Surveillance 🦧🔍 </h1>
|
16 |
|
17 |
## About the model 👁️
|
18 |
+
This is a demo for my YOLOv8 nano trained for orangutan detection.\\
|
19 |
+
The model was trained using only ~1000 images of orangutan [this dataset](https://images.cv/dataset/orangutan-image-classification-dataset) and [this dataset](https://www.kaggle.com/datasets/slothkong/10-monkey-species/data) containing ~1000 images used as background images.\\
|
20 |
Annotations were obtained using zero shot object detection method GroundingDino.\
|
21 |
|
22 |
+
The full pipeline can be found on my github repository: https://github.com/clementapa/orangutan-image-video-detection.
|
23 |
|
24 |
+
## About the orangutans 🦧
|
25 |
Because to habitat destruction, illicit poaching, and the pet trade, orangutans are in danger of going extinct. Their natural habitat has been significantly reduced by deforestation and the growth of palm oil plantations. Adult orangutans are occasionally sought for their body parts, and they are frequently captured and sold as pets. Climate change and disease are also taking a toll on their populations. Furthermore, it is concerning to note that they are limited to Borneo and Sumatra, two places on Earth. Sustainable practises and conservation initiatives are crucial to preventing the permanent extinction of these amazing animals.
|
26 |
|
27 |
## AI for good 🌍
|
|
|
184 |
confidence_image_slider = gr.Slider(
|
185 |
label="Confidence", minimum=0.1, maximum=1.0, step=0.05, value=0.6
|
186 |
)
|
187 |
+
submit_button_image = gr.Button("Let's find orangutans 🦧 !")
|
188 |
output_image = gr.Image(label="Results", type="pil")
|
189 |
|
190 |
with gr.Tab("Detect on a video 📹"):
|
|
|
209 |
confidence_video_slider = gr.Slider(
|
210 |
label="Confidence", minimum=0.1, maximum=1.0, step=0.05, value=0.6
|
211 |
)
|
212 |
+
submit_button_video = gr.Button("Let's find orangutans 🦧 !")
|
213 |
output_video = gr.Video(label="Results")
|
214 |
|
215 |
submit_button_image.click(
|