birdnet-analyzer 2.1.0__tar.gz → 2.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/LICENSE +18 -18
  2. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1}/PKG-INFO +147 -146
  3. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/README.md +88 -88
  4. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/__init__.py +9 -9
  5. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/analyze/__init__.py +19 -19
  6. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/analyze/__main__.py +3 -3
  7. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/analyze/cli.py +30 -30
  8. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/analyze/core.py +268 -246
  9. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/analyze/utils.py +700 -694
  10. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/audio.py +368 -368
  11. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/cli.py +732 -732
  12. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/config.py +243 -243
  13. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/eBird_taxonomy_codes_2024E.json +13045 -13045
  14. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/embeddings/__init__.py +3 -3
  15. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/embeddings/__main__.py +3 -3
  16. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/embeddings/cli.py +12 -12
  17. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/embeddings/core.py +70 -70
  18. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/embeddings/utils.py +173 -220
  19. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/__init__.py +189 -189
  20. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/__main__.py +3 -3
  21. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/assessment/metrics.py +388 -388
  22. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/assessment/performance_assessor.py +364 -364
  23. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/assessment/plotting.py +378 -378
  24. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/preprocessing/data_processor.py +631 -631
  25. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/preprocessing/utils.py +98 -98
  26. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/__init__.py +19 -19
  27. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/__main__.py +3 -3
  28. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/analysis.py +179 -179
  29. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/arrow_down.svg +4 -4
  30. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/arrow_left.svg +4 -4
  31. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/arrow_right.svg +4 -4
  32. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/arrow_up.svg +4 -4
  33. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/gui.css +36 -36
  34. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/gui.js +89 -93
  35. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/embeddings.py +638 -638
  36. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/evaluation.py +801 -801
  37. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/localization.py +75 -75
  38. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/multi_file.py +265 -265
  39. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/review.py +472 -472
  40. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/segments.py +191 -191
  41. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/settings.py +149 -149
  42. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/single_file.py +264 -264
  43. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/species.py +95 -95
  44. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/train.py +687 -687
  45. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/utils.py +803 -797
  46. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt +6522 -6522
  47. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt +6522 -6522
  48. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt +6522 -6522
  49. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt +6522 -6522
  50. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt +6522 -6522
  51. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt +6522 -6522
  52. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt +6522 -6522
  53. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt +6522 -6522
  54. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt +6522 -6522
  55. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt +6522 -6522
  56. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt +6522 -6522
  57. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt +6522 -6522
  58. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt +6522 -6522
  59. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt +6522 -6522
  60. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt +6522 -6522
  61. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt +6522 -6522
  62. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt +6522 -6522
  63. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt +6522 -6522
  64. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt +6522 -6522
  65. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt +6522 -6522
  66. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt +6522 -6522
  67. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt +6522 -6522
  68. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt +6522 -6522
  69. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt +6522 -6522
  70. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt +6522 -6522
  71. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt +6522 -6522
  72. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt +6522 -6522
  73. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt +6522 -6522
  74. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt +6522 -6522
  75. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt +6522 -6522
  76. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt +6522 -6522
  77. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt +6522 -6522
  78. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt +6522 -6522
  79. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt +6522 -6522
  80. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt +6522 -6522
  81. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt +6522 -6522
  82. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt +6522 -6522
  83. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/de.json +342 -341
  84. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/en.json +342 -341
  85. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/fi.json +342 -341
  86. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/fr.json +342 -341
  87. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/id.json +342 -341
  88. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/pt-br.json +342 -341
  89. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/ru.json +342 -341
  90. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/se.json +342 -341
  91. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/tlh.json +342 -341
  92. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/lang/zh_TW.json +342 -341
  93. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/model.py +1213 -1212
  94. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/search/__init__.py +3 -3
  95. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/search/__main__.py +3 -3
  96. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/search/cli.py +11 -11
  97. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/search/core.py +78 -78
  98. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/search/utils.py +104 -107
  99. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/segments/__init__.py +3 -3
  100. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/segments/__main__.py +3 -3
  101. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/segments/cli.py +13 -13
  102. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/segments/core.py +81 -81
  103. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/segments/utils.py +383 -383
  104. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/species/__init__.py +3 -3
  105. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/species/__main__.py +3 -3
  106. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/species/cli.py +13 -13
  107. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/species/core.py +35 -35
  108. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/species/utils.py +73 -74
  109. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/train/__init__.py +3 -3
  110. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/train/__main__.py +3 -3
  111. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/train/cli.py +13 -13
  112. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/train/core.py +113 -113
  113. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/train/utils.py +878 -877
  114. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/translate.py +132 -133
  115. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/utils.py +425 -425
  116. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/PKG-INFO +147 -146
  117. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/SOURCES.txt +0 -7
  118. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/requires.txt +1 -0
  119. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/pyproject.toml +149 -147
  120. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/setup.cfg +4 -4
  121. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/tests/test_utils.py +28 -28
  122. birdnet_analyzer-2.1.0/birdnet_analyzer/playground.py +0 -5
  123. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/assessment/__init__.py +0 -0
  124. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/evaluation/preprocessing/__init__.py +0 -0
  125. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/img/birdnet-icon.ico +0 -0
  126. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/img/birdnet_logo.png +0 -0
  127. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/img/birdnet_logo_no_transparent.png +0 -0
  128. {birdnet_analyzer-2.1.0 → birdnet_analyzer-2.1.1}/birdnet_analyzer/gui/assets/img/clo-logo-bird.svg +0 -0
  129. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/dependency_links.txt +0 -0
  130. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/entry_points.txt +0 -0
  131. {birdnet_analyzer-2.1.0/BirdNET_Analyzer.egg-info → birdnet_analyzer-2.1.1/birdnet_analyzer.egg-info}/top_level.txt +0 -0
@@ -1,19 +1,19 @@
1
- Copyright (c) 2024 birdnet-team
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ Copyright (c) 2024 birdnet-team
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
19
  SOFTWARE.
@@ -1,146 +1,147 @@
1
- Metadata-Version: 2.4
2
- Name: birdnet_analyzer
3
- Version: 2.1.0
4
- Summary: BirdNET analyzer for scientific audio data processing and bird classification.
5
- Author: Stefan Kahl
6
- Maintainer: Josef Haupt, Max Mauermann
7
- License: MIT
8
- Project-URL: Homepage, https://birdnet.cornell.edu/birdnet
9
- Project-URL: Documentation, https://birdnet-team.github.io/BirdNET-Analyzer/
10
- Project-URL: Repository, https://github.com/birdnet-team/BirdNET-Analyzer
11
- Project-URL: Issues, https://github.com/birdnet-team/BirdNET-Analyzer/issues
12
- Project-URL: Download, https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest
13
- Keywords: birdnet,birdnet-analyzer
14
- Classifier: Programming Language :: Python :: 3.11
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
17
- Classifier: Topic :: Scientific/Engineering
18
- Classifier: Topic :: Scientific/Engineering :: Information Analysis
19
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
- Requires-Python: >=3.11
21
- Description-Content-Type: text/markdown
22
- License-File: LICENSE
23
- Requires-Dist: librosa
24
- Requires-Dist: resampy
25
- Requires-Dist: tensorflow==2.15.1
26
- Requires-Dist: scikit-learn==1.6.1
27
- Requires-Dist: tqdm
28
- Requires-Dist: pandas
29
- Requires-Dist: matplotlib
30
- Provides-Extra: train
31
- Requires-Dist: keras-tuner; extra == "train"
32
- Provides-Extra: server
33
- Requires-Dist: bottle; extra == "server"
34
- Requires-Dist: requests; extra == "server"
35
- Provides-Extra: gui
36
- Requires-Dist: birdnet-analyzer[embeddings,train]; extra == "gui"
37
- Requires-Dist: gradio==5.32.1; extra == "gui"
38
- Requires-Dist: pywebview; extra == "gui"
39
- Requires-Dist: plotly[express]; extra == "gui"
40
- Requires-Dist: pywin32; platform_system == "Windows" and extra == "gui"
41
- Requires-Dist: qtpy; platform_system == "Linux" and extra == "gui"
42
- Requires-Dist: PyGObject; platform_system == "Linux" and extra == "gui"
43
- Provides-Extra: embeddings
44
- Requires-Dist: perch-hoplite; extra == "embeddings"
45
- Provides-Extra: all
46
- Requires-Dist: birdnet-analyzer[gui,server]; extra == "all"
47
- Provides-Extra: docs
48
- Requires-Dist: sphinx; extra == "docs"
49
- Requires-Dist: sphinx-rtd-theme; extra == "docs"
50
- Requires-Dist: sphinx-argparse; extra == "docs"
51
- Provides-Extra: tests
52
- Requires-Dist: pytest; extra == "tests"
53
- Provides-Extra: dev
54
- Requires-Dist: birdnet_analyzer[tests]; extra == "dev"
55
- Requires-Dist: birdnet_analyzer[docs]; extra == "dev"
56
- Requires-Dist: ruff; extra == "dev"
57
- Dynamic: license-file
58
-
59
- <div align="center">
60
- <h1>BirdNET-Analyzer</h1>
61
- <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
62
- <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
63
- </a>
64
- </div>
65
- <br>
66
- <div align="center">
67
-
68
- ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
69
- ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
70
- [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
71
- ![Species](https://badgen.net/badge/Species/6512/blue)
72
- ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
73
-
74
- [![Docker](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml/badge.svg)](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml)
75
- [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
76
- ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
77
-
78
- [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
79
- [![PyPI - Version](https://img.shields.io/pypi/v/birdnet_analyzer?logo=pypi)](https://pypi.org/project/birdnet-analyzer/)
80
-
81
- [![Sponsor](https://img.shields.io/badge/Support%20our%20work-8A2BE2?logo=data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgd2lkdGg9IjE2IiBkYXRhLXZpZXctY29tcG9uZW50PSJ0cnVlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICAgIDxwYXRoIGQ9Im04IDE0LjI1LjM0NS42NjZhLjc1Ljc1IDAgMCAxLS42OSAwbC0uMDA4LS4wMDQtLjAxOC0uMDFhNy4xNTIgNy4xNTIgMCAwIDEtLjMxLS4xNyAyMi4wNTUgMjIuMDU1IDAgMCAxLTMuNDM0LTIuNDE0QzIuMDQ1IDEwLjczMSAwIDguMzUgMCA1LjUgMCAyLjgzNiAyLjA4NiAxIDQuMjUgMSA1Ljc5NyAxIDcuMTUzIDEuODAyIDggMy4wMiA4Ljg0NyAxLjgwMiAxMC4yMDMgMSAxMS43NSAxIDEzLjkxNCAxIDE2IDIuODM2IDE2IDUuNWMwIDIuODUtMi4wNDUgNS4yMzEtMy44ODUgNi44MThhMjIuMDY2IDIyLjA2NiAwIDAgMS0zLjc0NCAyLjU4NGwtLjAxOC4wMS0uMDA2LjAwM2gtLjAwMlpNNC4yNSAyLjVjLTEuMzM2IDAtMi43NSAxLjE2NC0yLjc1IDMgMCAyLjE1IDEuNTggNC4xNDQgMy4zNjUgNS42ODJBMjAuNTggMjAuNTggMCAwIDAgOCAxMy4zOTNhMjAuNTggMjAuNTggMCAwIDAgMy4xMzUtMi4yMTFDMTIuOTIgOS42NDQgMTQuNSA3LjY1IDE0LjUgNS41YzAtMS44MzYtMS40MTQtMy0yLjc1LTMtMS4zNzMgMC0yLjYwOS45ODYtMy4wMjkgMi40NTZhLjc0OS43NDkgMCAwIDEtMS40NDIgMEM2Ljg1OSAzLjQ4NiA1LjYyMyAyLjUgNC4yNSAyLjVaIj48L3BhdGg+DQo8L3N2Zz4=)](https://give.birds.cornell.edu/page/132162/donate/1)
82
-
83
- </div>
84
-
85
- This repo contains BirdNET scripts for processing large amounts of audio data or single audio files.
86
- This is the most advanced version of BirdNET for acoustic analyses and we will keep this repository up-to-date with new models and improved interfaces to enable scientists with no CS background to run the analysis.
87
-
88
- Feel free to use BirdNET for your acoustic analyses and research.
89
- If you do, please cite as:
90
-
91
- ```bibtex
92
- @article{kahl2021birdnet,
93
- title={BirdNET: A deep learning solution for avian diversity monitoring},
94
- author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
95
- journal={Ecological Informatics},
96
- volume={61},
97
- pages={101236},
98
- year={2021},
99
- publisher={Elsevier}
100
- }
101
- ```
102
-
103
- ## Documentation
104
-
105
- You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
106
-
107
- ## Download
108
-
109
- You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
110
- Models can be found on [Zenodo](https://zenodo.org/records/15050749).
111
-
112
- ## About
113
-
114
- Developed by the [K. Lisa Yang Center for Conservation Bioacoustics](https://www.birds.cornell.edu/ccb/) at the [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home) in collaboration with [Chemnitz University of Technology](https://www.tu-chemnitz.de/index.html.en).
115
-
116
- Go to https://birdnet.cornell.edu to learn more about the project.
117
-
118
- Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
119
-
120
- **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
121
-
122
- ## License
123
-
124
- - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
125
- - **Models**: The models used in this project are licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).
126
-
127
- Please ensure you review and adhere to the specific license terms provided with each model.
128
-
129
- *Please note that all educational and research purposes are considered non-commercial use and it is therefore freely permitted to use BirdNET models in any way.*
130
-
131
- ## Funding
132
-
133
- This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
134
- Our work in the K. Lisa Yang Center for Conservation Bioacoustics is made possible by the generosity of K. Lisa Yang to advance innovative conservation technologies to inspire and inform the conservation of wildlife and habitats.
135
-
136
- The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project “BirdNET+” (FKZ 01|S22072).
137
- The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
138
- In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project RangerSound(project 39263/01).
139
-
140
- ## Partners
141
-
142
- BirdNET is a joint effort of partners from academia and industry.
143
- Without these partnerships, this project would not have been possible.
144
- Thank you!
145
-
146
- ![Logos of all partners](https://tuc.cloud/index.php/s/KSdWfX5CnSRpRgQ/download/box_logos.png)
1
+ Metadata-Version: 2.4
2
+ Name: birdnet_analyzer
3
+ Version: 2.1.1
4
+ Summary: BirdNET analyzer for scientific audio data processing and bird classification.
5
+ Author: Stefan Kahl
6
+ Maintainer: Josef Haupt, Max Mauermann
7
+ License: MIT
8
+ Project-URL: Homepage, https://birdnet.cornell.edu/birdnet
9
+ Project-URL: Documentation, https://birdnet-team.github.io/BirdNET-Analyzer/
10
+ Project-URL: Repository, https://github.com/birdnet-team/BirdNET-Analyzer
11
+ Project-URL: Issues, https://github.com/birdnet-team/BirdNET-Analyzer/issues
12
+ Project-URL: Download, https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest
13
+ Keywords: birdnet,birdnet-analyzer
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
17
+ Classifier: Topic :: Scientific/Engineering
18
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: librosa
24
+ Requires-Dist: resampy
25
+ Requires-Dist: tensorflow==2.15.1
26
+ Requires-Dist: scikit-learn==1.6.1
27
+ Requires-Dist: tqdm
28
+ Requires-Dist: pandas
29
+ Requires-Dist: matplotlib
30
+ Provides-Extra: train
31
+ Requires-Dist: keras-tuner; extra == "train"
32
+ Provides-Extra: server
33
+ Requires-Dist: bottle; extra == "server"
34
+ Requires-Dist: requests; extra == "server"
35
+ Provides-Extra: gui
36
+ Requires-Dist: birdnet-analyzer[embeddings,train]; extra == "gui"
37
+ Requires-Dist: gradio==5.32.1; extra == "gui"
38
+ Requires-Dist: pywebview; extra == "gui"
39
+ Requires-Dist: plotly[express]; extra == "gui"
40
+ Requires-Dist: pywin32; platform_system == "Windows" and extra == "gui"
41
+ Requires-Dist: qtpy; platform_system == "Linux" and extra == "gui"
42
+ Requires-Dist: PyGObject; platform_system == "Linux" and extra == "gui"
43
+ Provides-Extra: embeddings
44
+ Requires-Dist: perch-hoplite; extra == "embeddings"
45
+ Provides-Extra: all
46
+ Requires-Dist: birdnet-analyzer[gui,server]; extra == "all"
47
+ Provides-Extra: docs
48
+ Requires-Dist: sphinx; extra == "docs"
49
+ Requires-Dist: sphinx-rtd-theme; extra == "docs"
50
+ Requires-Dist: sphinx-argparse; extra == "docs"
51
+ Provides-Extra: tests
52
+ Requires-Dist: pytest; extra == "tests"
53
+ Requires-Dist: pytest-timeout; extra == "tests"
54
+ Provides-Extra: dev
55
+ Requires-Dist: birdnet_analyzer[tests]; extra == "dev"
56
+ Requires-Dist: birdnet_analyzer[docs]; extra == "dev"
57
+ Requires-Dist: ruff; extra == "dev"
58
+ Dynamic: license-file
59
+
60
+ <div align="center">
61
+ <h1>BirdNET-Analyzer</h1>
62
+ <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
63
+ <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
64
+ </a>
65
+ </div>
66
+ <br>
67
+ <div align="center">
68
+
69
+ ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
70
+ ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
71
+ [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
72
+ ![Species](https://badgen.net/badge/Species/6512/blue)
73
+ ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
74
+
75
+ [![Docker](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml/badge.svg)](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml)
76
+ [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
77
+ ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
78
+
79
+ [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
80
+ [![PyPI - Version](https://img.shields.io/pypi/v/birdnet_analyzer?logo=pypi)](https://pypi.org/project/birdnet-analyzer/)
81
+
82
+ [![Sponsor](https://img.shields.io/badge/Support%20our%20work-8A2BE2?logo=data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgd2lkdGg9IjE2IiBkYXRhLXZpZXctY29tcG9uZW50PSJ0cnVlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICAgIDxwYXRoIGQ9Im04IDE0LjI1LjM0NS42NjZhLjc1Ljc1IDAgMCAxLS42OSAwbC0uMDA4LS4wMDQtLjAxOC0uMDFhNy4xNTIgNy4xNTIgMCAwIDEtLjMxLS4xNyAyMi4wNTUgMjIuMDU1IDAgMCAxLTMuNDM0LTIuNDE0QzIuMDQ1IDEwLjczMSAwIDguMzUgMCA1LjUgMCAyLjgzNiAyLjA4NiAxIDQuMjUgMSA1Ljc5NyAxIDcuMTUzIDEuODAyIDggMy4wMiA4Ljg0NyAxLjgwMiAxMC4yMDMgMSAxMS43NSAxIDEzLjkxNCAxIDE2IDIuODM2IDE2IDUuNWMwIDIuODUtMi4wNDUgNS4yMzEtMy44ODUgNi44MThhMjIuMDY2IDIyLjA2NiAwIDAgMS0zLjc0NCAyLjU4NGwtLjAxOC4wMS0uMDA2LjAwM2gtLjAwMlpNNC4yNSAyLjVjLTEuMzM2IDAtMi43NSAxLjE2NC0yLjc1IDMgMCAyLjE1IDEuNTggNC4xNDQgMy4zNjUgNS42ODJBMjAuNTggMjAuNTggMCAwIDAgOCAxMy4zOTNhMjAuNTggMjAuNTggMCAwIDAgMy4xMzUtMi4yMTFDMTIuOTIgOS42NDQgMTQuNSA3LjY1IDE0LjUgNS41YzAtMS44MzYtMS40MTQtMy0yLjc1LTMtMS4zNzMgMC0yLjYwOS45ODYtMy4wMjkgMi40NTZhLjc0OS43NDkgMCAwIDEtMS40NDIgMEM2Ljg1OSAzLjQ4NiA1LjYyMyAyLjUgNC4yNSAyLjVaIj48L3BhdGg+DQo8L3N2Zz4=)](https://give.birds.cornell.edu/page/132162/donate/1)
83
+
84
+ </div>
85
+
86
+ This repo contains BirdNET scripts for processing large amounts of audio data or single audio files.
87
+ This is the most advanced version of BirdNET for acoustic analyses and we will keep this repository up-to-date with new models and improved interfaces to enable scientists with no CS background to run the analysis.
88
+
89
+ Feel free to use BirdNET for your acoustic analyses and research.
90
+ If you do, please cite as:
91
+
92
+ ```bibtex
93
+ @article{kahl2021birdnet,
94
+ title={BirdNET: A deep learning solution for avian diversity monitoring},
95
+ author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
96
+ journal={Ecological Informatics},
97
+ volume={61},
98
+ pages={101236},
99
+ year={2021},
100
+ publisher={Elsevier}
101
+ }
102
+ ```
103
+
104
+ ## Documentation
105
+
106
+ You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
107
+
108
+ ## Download
109
+
110
+ You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
111
+ Models can be found on [Zenodo](https://zenodo.org/records/15050749).
112
+
113
+ ## About
114
+
115
+ Developed by the [K. Lisa Yang Center for Conservation Bioacoustics](https://www.birds.cornell.edu/ccb/) at the [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home) in collaboration with [Chemnitz University of Technology](https://www.tu-chemnitz.de/index.html.en).
116
+
117
+ Go to https://birdnet.cornell.edu to learn more about the project.
118
+
119
+ Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
120
+
121
+ **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
122
+
123
+ ## License
124
+
125
+ - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
126
+ - **Models**: The models used in this project are licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).
127
+
128
+ Please ensure you review and adhere to the specific license terms provided with each model.
129
+
130
+ *Please note that all educational and research purposes are considered non-commercial use and it is therefore freely permitted to use BirdNET models in any way.*
131
+
132
+ ## Funding
133
+
134
+ This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
135
+ Our work in the K. Lisa Yang Center for Conservation Bioacoustics is made possible by the generosity of K. Lisa Yang to advance innovative conservation technologies to inspire and inform the conservation of wildlife and habitats.
136
+
137
+ The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project BirdNET+” (FKZ 01|S22072).
138
+ The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
139
+ In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project “RangerSound” (project 39263/01).
140
+
141
+ ## Partners
142
+
143
+ BirdNET is a joint effort of partners from academia and industry.
144
+ Without these partnerships, this project would not have been possible.
145
+ Thank you!
146
+
147
+ ![Logos of all partners](https://tuc.cloud/index.php/s/KSdWfX5CnSRpRgQ/download/box_logos.png)
@@ -1,88 +1,88 @@
1
- <div align="center">
2
- <h1>BirdNET-Analyzer</h1>
3
- <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
4
- <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
5
- </a>
6
- </div>
7
- <br>
8
- <div align="center">
9
-
10
- ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
11
- ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
12
- [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
13
- ![Species](https://badgen.net/badge/Species/6512/blue)
14
- ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
15
-
16
- [![Docker](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml/badge.svg)](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml)
17
- [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
18
- ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
19
-
20
- [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
21
- [![PyPI - Version](https://img.shields.io/pypi/v/birdnet_analyzer?logo=pypi)](https://pypi.org/project/birdnet-analyzer/)
22
-
23
- [![Sponsor](https://img.shields.io/badge/Support%20our%20work-8A2BE2?logo=data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgd2lkdGg9IjE2IiBkYXRhLXZpZXctY29tcG9uZW50PSJ0cnVlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICAgIDxwYXRoIGQ9Im04IDE0LjI1LjM0NS42NjZhLjc1Ljc1IDAgMCAxLS42OSAwbC0uMDA4LS4wMDQtLjAxOC0uMDFhNy4xNTIgNy4xNTIgMCAwIDEtLjMxLS4xNyAyMi4wNTUgMjIuMDU1IDAgMCAxLTMuNDM0LTIuNDE0QzIuMDQ1IDEwLjczMSAwIDguMzUgMCA1LjUgMCAyLjgzNiAyLjA4NiAxIDQuMjUgMSA1Ljc5NyAxIDcuMTUzIDEuODAyIDggMy4wMiA4Ljg0NyAxLjgwMiAxMC4yMDMgMSAxMS43NSAxIDEzLjkxNCAxIDE2IDIuODM2IDE2IDUuNWMwIDIuODUtMi4wNDUgNS4yMzEtMy44ODUgNi44MThhMjIuMDY2IDIyLjA2NiAwIDAgMS0zLjc0NCAyLjU4NGwtLjAxOC4wMS0uMDA2LjAwM2gtLjAwMlpNNC4yNSAyLjVjLTEuMzM2IDAtMi43NSAxLjE2NC0yLjc1IDMgMCAyLjE1IDEuNTggNC4xNDQgMy4zNjUgNS42ODJBMjAuNTggMjAuNTggMCAwIDAgOCAxMy4zOTNhMjAuNTggMjAuNTggMCAwIDAgMy4xMzUtMi4yMTFDMTIuOTIgOS42NDQgMTQuNSA3LjY1IDE0LjUgNS41YzAtMS44MzYtMS40MTQtMy0yLjc1LTMtMS4zNzMgMC0yLjYwOS45ODYtMy4wMjkgMi40NTZhLjc0OS43NDkgMCAwIDEtMS40NDIgMEM2Ljg1OSAzLjQ4NiA1LjYyMyAyLjUgNC4yNSAyLjVaIj48L3BhdGg+DQo8L3N2Zz4=)](https://give.birds.cornell.edu/page/132162/donate/1)
24
-
25
- </div>
26
-
27
- This repo contains BirdNET scripts for processing large amounts of audio data or single audio files.
28
- This is the most advanced version of BirdNET for acoustic analyses and we will keep this repository up-to-date with new models and improved interfaces to enable scientists with no CS background to run the analysis.
29
-
30
- Feel free to use BirdNET for your acoustic analyses and research.
31
- If you do, please cite as:
32
-
33
- ```bibtex
34
- @article{kahl2021birdnet,
35
- title={BirdNET: A deep learning solution for avian diversity monitoring},
36
- author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
37
- journal={Ecological Informatics},
38
- volume={61},
39
- pages={101236},
40
- year={2021},
41
- publisher={Elsevier}
42
- }
43
- ```
44
-
45
- ## Documentation
46
-
47
- You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
48
-
49
- ## Download
50
-
51
- You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
52
- Models can be found on [Zenodo](https://zenodo.org/records/15050749).
53
-
54
- ## About
55
-
56
- Developed by the [K. Lisa Yang Center for Conservation Bioacoustics](https://www.birds.cornell.edu/ccb/) at the [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home) in collaboration with [Chemnitz University of Technology](https://www.tu-chemnitz.de/index.html.en).
57
-
58
- Go to https://birdnet.cornell.edu to learn more about the project.
59
-
60
- Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
61
-
62
- **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
63
-
64
- ## License
65
-
66
- - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
67
- - **Models**: The models used in this project are licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).
68
-
69
- Please ensure you review and adhere to the specific license terms provided with each model.
70
-
71
- *Please note that all educational and research purposes are considered non-commercial use and it is therefore freely permitted to use BirdNET models in any way.*
72
-
73
- ## Funding
74
-
75
- This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
76
- Our work in the K. Lisa Yang Center for Conservation Bioacoustics is made possible by the generosity of K. Lisa Yang to advance innovative conservation technologies to inspire and inform the conservation of wildlife and habitats.
77
-
78
- The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project “BirdNET+” (FKZ 01|S22072).
79
- The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
80
- In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project “RangerSound” (project 39263/01).
81
-
82
- ## Partners
83
-
84
- BirdNET is a joint effort of partners from academia and industry.
85
- Without these partnerships, this project would not have been possible.
86
- Thank you!
87
-
88
- ![Logos of all partners](https://tuc.cloud/index.php/s/KSdWfX5CnSRpRgQ/download/box_logos.png)
1
+ <div align="center">
2
+ <h1>BirdNET-Analyzer</h1>
3
+ <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
4
+ <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
5
+ </a>
6
+ </div>
7
+ <br>
8
+ <div align="center">
9
+
10
+ ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
11
+ ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
12
+ [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
13
+ ![Species](https://badgen.net/badge/Species/6512/blue)
14
+ ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
15
+
16
+ [![Docker](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml/badge.svg)](https://github.com/birdnet-team/BirdNET-Analyzer/actions/workflows/docker-build.yml)
17
+ [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
18
+ ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
19
+
20
+ [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
21
+ [![PyPI - Version](https://img.shields.io/pypi/v/birdnet_analyzer?logo=pypi)](https://pypi.org/project/birdnet-analyzer/)
22
+
23
+ [![Sponsor](https://img.shields.io/badge/Support%20our%20work-8A2BE2?logo=data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE2IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgd2lkdGg9IjE2IiBkYXRhLXZpZXctY29tcG9uZW50PSJ0cnVlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICAgIDxwYXRoIGQ9Im04IDE0LjI1LjM0NS42NjZhLjc1Ljc1IDAgMCAxLS42OSAwbC0uMDA4LS4wMDQtLjAxOC0uMDFhNy4xNTIgNy4xNTIgMCAwIDEtLjMxLS4xNyAyMi4wNTUgMjIuMDU1IDAgMCAxLTMuNDM0LTIuNDE0QzIuMDQ1IDEwLjczMSAwIDguMzUgMCA1LjUgMCAyLjgzNiAyLjA4NiAxIDQuMjUgMSA1Ljc5NyAxIDcuMTUzIDEuODAyIDggMy4wMiA4Ljg0NyAxLjgwMiAxMC4yMDMgMSAxMS43NSAxIDEzLjkxNCAxIDE2IDIuODM2IDE2IDUuNWMwIDIuODUtMi4wNDUgNS4yMzEtMy44ODUgNi44MThhMjIuMDY2IDIyLjA2NiAwIDAgMS0zLjc0NCAyLjU4NGwtLjAxOC4wMS0uMDA2LjAwM2gtLjAwMlpNNC4yNSAyLjVjLTEuMzM2IDAtMi43NSAxLjE2NC0yLjc1IDMgMCAyLjE1IDEuNTggNC4xNDQgMy4zNjUgNS42ODJBMjAuNTggMjAuNTggMCAwIDAgOCAxMy4zOTNhMjAuNTggMjAuNTggMCAwIDAgMy4xMzUtMi4yMTFDMTIuOTIgOS42NDQgMTQuNSA3LjY1IDE0LjUgNS41YzAtMS44MzYtMS40MTQtMy0yLjc1LTMtMS4zNzMgMC0yLjYwOS45ODYtMy4wMjkgMi40NTZhLjc0OS43NDkgMCAwIDEtMS40NDIgMEM2Ljg1OSAzLjQ4NiA1LjYyMyAyLjUgNC4yNSAyLjVaIj48L3BhdGg+DQo8L3N2Zz4=)](https://give.birds.cornell.edu/page/132162/donate/1)
24
+
25
+ </div>
26
+
27
+ This repo contains BirdNET scripts for processing large amounts of audio data or single audio files.
28
+ This is the most advanced version of BirdNET for acoustic analyses and we will keep this repository up-to-date with new models and improved interfaces to enable scientists with no CS background to run the analysis.
29
+
30
+ Feel free to use BirdNET for your acoustic analyses and research.
31
+ If you do, please cite as:
32
+
33
+ ```bibtex
34
+ @article{kahl2021birdnet,
35
+ title={BirdNET: A deep learning solution for avian diversity monitoring},
36
+ author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
37
+ journal={Ecological Informatics},
38
+ volume={61},
39
+ pages={101236},
40
+ year={2021},
41
+ publisher={Elsevier}
42
+ }
43
+ ```
44
+
45
+ ## Documentation
46
+
47
+ You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
48
+
49
+ ## Download
50
+
51
+ You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
52
+ Models can be found on [Zenodo](https://zenodo.org/records/15050749).
53
+
54
+ ## About
55
+
56
+ Developed by the [K. Lisa Yang Center for Conservation Bioacoustics](https://www.birds.cornell.edu/ccb/) at the [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home) in collaboration with [Chemnitz University of Technology](https://www.tu-chemnitz.de/index.html.en).
57
+
58
+ Go to https://birdnet.cornell.edu to learn more about the project.
59
+
60
+ Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
61
+
62
+ **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
63
+
64
+ ## License
65
+
66
+ - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
67
+ - **Models**: The models used in this project are licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).
68
+
69
+ Please ensure you review and adhere to the specific license terms provided with each model.
70
+
71
+ *Please note that all educational and research purposes are considered non-commercial use and it is therefore freely permitted to use BirdNET models in any way.*
72
+
73
+ ## Funding
74
+
75
+ This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
76
+ Our work in the K. Lisa Yang Center for Conservation Bioacoustics is made possible by the generosity of K. Lisa Yang to advance innovative conservation technologies to inspire and inform the conservation of wildlife and habitats.
77
+
78
+ The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project “BirdNET+” (FKZ 01|S22072).
79
+ The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
80
+ In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project “RangerSound” (project 39263/01).
81
+
82
+ ## Partners
83
+
84
+ BirdNET is a joint effort of partners from academia and industry.
85
+ Without these partnerships, this project would not have been possible.
86
+ Thank you!
87
+
88
+ ![Logos of all partners](https://tuc.cloud/index.php/s/KSdWfX5CnSRpRgQ/download/box_logos.png)
@@ -1,9 +1,9 @@
1
- from birdnet_analyzer.analyze import analyze
2
- from birdnet_analyzer.embeddings import embeddings
3
- from birdnet_analyzer.search import search
4
- from birdnet_analyzer.segments import segments
5
- from birdnet_analyzer.species import species
6
- from birdnet_analyzer.train import train
7
-
8
- __version__ = "2.0.0"
9
- __all__ = ["analyze", "embeddings", "search", "segments", "species", "train"]
1
+ from birdnet_analyzer.analyze import analyze
2
+ from birdnet_analyzer.embeddings import embeddings
3
+ from birdnet_analyzer.search import search
4
+ from birdnet_analyzer.segments import segments
5
+ from birdnet_analyzer.species import species
6
+ from birdnet_analyzer.train import train
7
+
8
+ __version__ = "2.0.0"
9
+ __all__ = ["analyze", "embeddings", "search", "segments", "species", "train"]
@@ -1,19 +1,19 @@
1
- import os
2
-
3
- import birdnet_analyzer.config as cfg
4
- from birdnet_analyzer.analyze.core import analyze
5
-
6
- POSSIBLE_ADDITIONAL_COLUMNS_MAP = {
7
- "lat": lambda: cfg.LATITUDE,
8
- "lon": lambda: cfg.LONGITUDE,
9
- "week": lambda: cfg.WEEK,
10
- "overlap": lambda: cfg.SIG_OVERLAP,
11
- "sensitivity": lambda: cfg.SIGMOID_SENSITIVITY,
12
- "min_conf": lambda: cfg.MIN_CONFIDENCE,
13
- "species_list": lambda: cfg.SPECIES_LIST_FILE or "",
14
- "model": lambda: os.path.basename(cfg.MODEL_PATH),
15
- }
16
-
17
- __all__ = [
18
- "analyze",
19
- ]
1
+ import os
2
+
3
+ import birdnet_analyzer.config as cfg
4
+ from birdnet_analyzer.analyze.core import analyze
5
+
6
+ POSSIBLE_ADDITIONAL_COLUMNS_MAP = {
7
+ "lat": lambda: cfg.LATITUDE,
8
+ "lon": lambda: cfg.LONGITUDE,
9
+ "week": lambda: cfg.WEEK,
10
+ "overlap": lambda: cfg.SIG_OVERLAP,
11
+ "sensitivity": lambda: cfg.SIGMOID_SENSITIVITY,
12
+ "min_conf": lambda: cfg.MIN_CONFIDENCE,
13
+ "species_list": lambda: cfg.SPECIES_LIST_FILE or "",
14
+ "model": lambda: os.path.basename(cfg.MODEL_PATH),
15
+ }
16
+
17
+ __all__ = [
18
+ "analyze",
19
+ ]
@@ -1,3 +1,3 @@
1
- from birdnet_analyzer.analyze.cli import main
2
-
3
- main()
1
+ from birdnet_analyzer.analyze.cli import main
2
+
3
+ main()