Your Name
commited on
Commit
Β·
35f2fe5
1
Parent(s):
af118ef
add appendix & acknowledgements
Browse files
__pycache__/app.cpython-310.pyc
CHANGED
Binary files a/__pycache__/app.cpython-310.pyc and b/__pycache__/app.cpython-310.pyc differ
|
|
__pycache__/audio_class_predictor.cpython-310.pyc
CHANGED
Binary files a/__pycache__/audio_class_predictor.cpython-310.pyc and b/__pycache__/audio_class_predictor.cpython-310.pyc differ
|
|
__pycache__/bird_ast_model.cpython-310.pyc
CHANGED
Binary files a/__pycache__/bird_ast_model.cpython-310.pyc and b/__pycache__/bird_ast_model.cpython-310.pyc differ
|
|
__pycache__/bird_ast_seq_model.cpython-310.pyc
CHANGED
Binary files a/__pycache__/bird_ast_seq_model.cpython-310.pyc and b/__pycache__/bird_ast_seq_model.cpython-310.pyc differ
|
|
__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/__pycache__/utils.cpython-310.pyc and b/__pycache__/utils.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -293,6 +293,10 @@ function createGradioAnimation() {
|
|
293 |
"""
|
294 |
|
295 |
REFERENCES = """
|
|
|
|
|
|
|
|
|
296 |
# References
|
297 |
|
298 |
[1] Torkington, S. (2023, February 7). 50% of the global economy is under threat from biodiversity loss. World Economic Forum. Retrieved from https://www.weforum.org/agenda/2023/02/biodiversity-nature-loss-cop15/.
|
@@ -300,6 +304,10 @@ REFERENCES = """
|
|
300 |
[2] Huang, P.-Y., Xu, H., Li, J., Baevski, A., Auli, M., Galuba, W., Metze, F., & Feichtenhofer, C. (2022). Masked Autoencoders that Listen. In NeurIPS.
|
301 |
|
302 |
[3] https://www.kaggle.com/code/dima806/bird-species-by-sound-detection
|
|
|
|
|
|
|
|
|
303 |
"""
|
304 |
|
305 |
# Function to handle model selection
|
|
|
293 |
"""
|
294 |
|
295 |
REFERENCES = """
|
296 |
+
# Appendix
|
297 |
+
|
298 |
+
We have applied the AudioMAE model to pre-classify the 23000+ unlabelled audio clips collected from the Greater Manaus region in the Amazon rainforest. The results of the audio type classification can be found in the following [link](https://drive.google.com/file/d/1uOT88LDnBD-Z3YcFz1e9XjvW2ugCo6EI/view?usp=drive_link). We hope that the pre-classification results can help researchers better exploring the vast collection of audio recordings and facilitate the study of biodiversity in the Amazon rainforest.
|
299 |
+
|
300 |
# References
|
301 |
|
302 |
[1] Torkington, S. (2023, February 7). 50% of the global economy is under threat from biodiversity loss. World Economic Forum. Retrieved from https://www.weforum.org/agenda/2023/02/biodiversity-nature-loss-cop15/.
|
|
|
304 |
[2] Huang, P.-Y., Xu, H., Li, J., Baevski, A., Auli, M., Galuba, W., Metze, F., & Feichtenhofer, C. (2022). Masked Autoencoders that Listen. In NeurIPS.
|
305 |
|
306 |
[3] https://www.kaggle.com/code/dima806/bird-species-by-sound-detection
|
307 |
+
|
308 |
+
# Acknowledgements
|
309 |
+
|
310 |
+
We would like to thank all organizers, mentors and participants of the AI+Environment EcoHackathon 2024 event for their unwavering support and collaboration. We extend our gratitude to ETH BiodivX, GainForest and ETH AI Center for providing data, facilities and resources that enabled us to analyse the rich data in different ways. Our special thanks to David Dao, Sarah Tariq, Alessandro Amodio for always being there to help us! πππ
|
311 |
"""
|
312 |
|
313 |
# Function to handle model selection
|