birdnet-analyzer 2.0.0__py3-none-any.whl → 2.0.1__py3-none-any.whl

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 (122) hide show
  1. birdnet_analyzer/__init__.py +9 -8
  2. birdnet_analyzer/analyze/__init__.py +5 -5
  3. birdnet_analyzer/analyze/__main__.py +3 -4
  4. birdnet_analyzer/analyze/cli.py +25 -25
  5. birdnet_analyzer/analyze/core.py +241 -245
  6. birdnet_analyzer/analyze/utils.py +692 -701
  7. birdnet_analyzer/audio.py +368 -372
  8. birdnet_analyzer/cli.py +709 -707
  9. birdnet_analyzer/config.py +242 -242
  10. birdnet_analyzer/eBird_taxonomy_codes_2021E.json +25279 -25279
  11. birdnet_analyzer/embeddings/__init__.py +3 -4
  12. birdnet_analyzer/embeddings/__main__.py +3 -3
  13. birdnet_analyzer/embeddings/cli.py +12 -13
  14. birdnet_analyzer/embeddings/core.py +69 -70
  15. birdnet_analyzer/embeddings/utils.py +179 -193
  16. birdnet_analyzer/evaluation/__init__.py +196 -195
  17. birdnet_analyzer/evaluation/__main__.py +3 -3
  18. birdnet_analyzer/evaluation/assessment/__init__.py +0 -0
  19. birdnet_analyzer/evaluation/assessment/metrics.py +388 -0
  20. birdnet_analyzer/evaluation/assessment/performance_assessor.py +409 -0
  21. birdnet_analyzer/evaluation/assessment/plotting.py +379 -0
  22. birdnet_analyzer/evaluation/preprocessing/__init__.py +0 -0
  23. birdnet_analyzer/evaluation/preprocessing/data_processor.py +631 -0
  24. birdnet_analyzer/evaluation/preprocessing/utils.py +98 -0
  25. birdnet_analyzer/gui/__init__.py +19 -23
  26. birdnet_analyzer/gui/__main__.py +3 -3
  27. birdnet_analyzer/gui/analysis.py +175 -174
  28. birdnet_analyzer/gui/assets/arrow_down.svg +4 -4
  29. birdnet_analyzer/gui/assets/arrow_left.svg +4 -4
  30. birdnet_analyzer/gui/assets/arrow_right.svg +4 -4
  31. birdnet_analyzer/gui/assets/arrow_up.svg +4 -4
  32. birdnet_analyzer/gui/assets/gui.css +28 -28
  33. birdnet_analyzer/gui/assets/gui.js +93 -93
  34. birdnet_analyzer/gui/embeddings.py +619 -620
  35. birdnet_analyzer/gui/evaluation.py +795 -813
  36. birdnet_analyzer/gui/localization.py +75 -68
  37. birdnet_analyzer/gui/multi_file.py +245 -246
  38. birdnet_analyzer/gui/review.py +519 -527
  39. birdnet_analyzer/gui/segments.py +191 -191
  40. birdnet_analyzer/gui/settings.py +128 -129
  41. birdnet_analyzer/gui/single_file.py +267 -269
  42. birdnet_analyzer/gui/species.py +95 -95
  43. birdnet_analyzer/gui/train.py +696 -698
  44. birdnet_analyzer/gui/utils.py +810 -808
  45. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt +6522 -6522
  46. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt +6522 -6522
  47. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt +6522 -6522
  48. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt +6522 -6522
  49. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt +6522 -6522
  50. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt +6522 -6522
  51. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt +6522 -6522
  52. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt +6522 -6522
  53. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt +6522 -6522
  54. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt +6522 -6522
  55. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt +6522 -6522
  56. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt +6522 -6522
  57. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt +6522 -6522
  58. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt +6522 -6522
  59. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt +6522 -6522
  60. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt +6522 -6522
  61. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt +6522 -6522
  62. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt +6522 -6522
  63. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt +6522 -6522
  64. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt +6522 -6522
  65. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt +6522 -6522
  66. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt +6522 -6522
  67. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt +6522 -6522
  68. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt +6522 -6522
  69. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt +6522 -6522
  70. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt +6522 -6522
  71. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt +6522 -6522
  72. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt +6522 -6522
  73. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt +6522 -6522
  74. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt +6522 -6522
  75. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt +6522 -6522
  76. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt +6522 -6522
  77. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt +6522 -6522
  78. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt +6522 -6522
  79. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt +6522 -6522
  80. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt +6522 -6522
  81. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt +6522 -6522
  82. birdnet_analyzer/lang/de.json +334 -334
  83. birdnet_analyzer/lang/en.json +334 -334
  84. birdnet_analyzer/lang/fi.json +334 -334
  85. birdnet_analyzer/lang/fr.json +334 -334
  86. birdnet_analyzer/lang/id.json +334 -334
  87. birdnet_analyzer/lang/pt-br.json +334 -334
  88. birdnet_analyzer/lang/ru.json +334 -334
  89. birdnet_analyzer/lang/se.json +334 -334
  90. birdnet_analyzer/lang/tlh.json +334 -334
  91. birdnet_analyzer/lang/zh_TW.json +334 -334
  92. birdnet_analyzer/model.py +1212 -1243
  93. birdnet_analyzer/playground.py +5 -0
  94. birdnet_analyzer/search/__init__.py +3 -3
  95. birdnet_analyzer/search/__main__.py +3 -3
  96. birdnet_analyzer/search/cli.py +11 -12
  97. birdnet_analyzer/search/core.py +78 -78
  98. birdnet_analyzer/search/utils.py +107 -111
  99. birdnet_analyzer/segments/__init__.py +3 -3
  100. birdnet_analyzer/segments/__main__.py +3 -3
  101. birdnet_analyzer/segments/cli.py +13 -14
  102. birdnet_analyzer/segments/core.py +81 -78
  103. birdnet_analyzer/segments/utils.py +383 -394
  104. birdnet_analyzer/species/__init__.py +3 -3
  105. birdnet_analyzer/species/__main__.py +3 -3
  106. birdnet_analyzer/species/cli.py +13 -14
  107. birdnet_analyzer/species/core.py +35 -35
  108. birdnet_analyzer/species/utils.py +74 -75
  109. birdnet_analyzer/train/__init__.py +3 -3
  110. birdnet_analyzer/train/__main__.py +3 -3
  111. birdnet_analyzer/train/cli.py +13 -14
  112. birdnet_analyzer/train/core.py +113 -113
  113. birdnet_analyzer/train/utils.py +877 -847
  114. birdnet_analyzer/translate.py +133 -104
  115. birdnet_analyzer/utils.py +426 -419
  116. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.0.1.dist-info}/METADATA +137 -129
  117. birdnet_analyzer-2.0.1.dist-info/RECORD +125 -0
  118. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.0.1.dist-info}/WHEEL +1 -1
  119. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.0.1.dist-info}/licenses/LICENSE +18 -18
  120. birdnet_analyzer-2.0.0.dist-info/RECORD +0 -117
  121. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.0.1.dist-info}/entry_points.txt +0 -0
  122. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.0.1.dist-info}/top_level.txt +0 -0
@@ -1,129 +1,137 @@
1
- Metadata-Version: 2.4
2
- Name: birdnet_analyzer
3
- Version: 2.0.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
- Provides-Extra: train
29
- Requires-Dist: keras-tuner; extra == "train"
30
- Provides-Extra: server
31
- Requires-Dist: bottle; extra == "server"
32
- Requires-Dist: requests; extra == "server"
33
- Provides-Extra: gui
34
- Requires-Dist: birdnet-analyzer[embeddings,train]; extra == "gui"
35
- Requires-Dist: gradio==5.25.2; extra == "gui"
36
- Requires-Dist: pywebview; extra == "gui"
37
- Requires-Dist: matplotlib; extra == "gui"
38
- Requires-Dist: plotly[express]; extra == "gui"
39
- Requires-Dist: seaborn; extra == "gui"
40
- Requires-Dist: pywin32; platform_system == "Windows" and extra == "gui"
41
- Provides-Extra: embeddings
42
- Requires-Dist: perch-hoplite; extra == "embeddings"
43
- Provides-Extra: all
44
- Requires-Dist: birdnet-analyzer[gui,server]; extra == "all"
45
- Dynamic: license-file
46
-
47
- <div align="center">
48
- <h1>BirdNET-Analyzer</h1>
49
- <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
50
- <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
51
- </a>
52
- </div>
53
- <br>
54
- <div align="center">
55
-
56
- ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
57
- ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
58
- [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
59
- ![Species](https://badgen.net/badge/Species/6512/blue)
60
- ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
61
-
62
- [![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)
63
- [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
64
- ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
65
- [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
66
-
67
- </div>
68
-
69
- This repo contains BirdNET models and scripts for processing large amounts of audio data or single audio files.
70
- 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.
71
-
72
- Feel free to use BirdNET for your acoustic analyses and research.
73
- If you do, please cite as:
74
-
75
- ```bibtex
76
- @article{kahl2021birdnet,
77
- title={BirdNET: A deep learning solution for avian diversity monitoring},
78
- author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
79
- journal={Ecological Informatics},
80
- volume={61},
81
- pages={101236},
82
- year={2021},
83
- publisher={Elsevier}
84
- }
85
- ```
86
-
87
- ## Documentation
88
-
89
- You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
90
-
91
- ## Download
92
-
93
- You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
94
-
95
- ## About
96
-
97
- 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).
98
-
99
- Go to https://birdnet.cornell.edu to learn more about the project.
100
-
101
- Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
102
-
103
- **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
104
-
105
- ## License
106
-
107
- - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
108
- - **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/).
109
-
110
- Please ensure you review and adhere to the specific license terms provided with each model.
111
-
112
- *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.*
113
-
114
- ## Funding
115
-
116
- This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
117
- 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.
118
-
119
- The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project “BirdNET+” (FKZ 01|S22072).
120
- The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
121
- In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project “RangerSound” (project 39263/01).
122
-
123
- ## Partners
124
-
125
- BirdNET is a joint effort of partners from academia and industry.
126
- Without these partnerships, this project would not have been possible.
127
- Thank you!
128
-
129
- ![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.0.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
+ Provides-Extra: train
29
+ Requires-Dist: keras-tuner; extra == "train"
30
+ Provides-Extra: server
31
+ Requires-Dist: bottle; extra == "server"
32
+ Requires-Dist: requests; extra == "server"
33
+ Provides-Extra: gui
34
+ Requires-Dist: birdnet-analyzer[embeddings,train]; extra == "gui"
35
+ Requires-Dist: gradio==5.25.2; extra == "gui"
36
+ Requires-Dist: pywebview; extra == "gui"
37
+ Requires-Dist: matplotlib; extra == "gui"
38
+ Requires-Dist: plotly[express]; extra == "gui"
39
+ Requires-Dist: seaborn; extra == "gui"
40
+ Requires-Dist: pywin32; platform_system == "Windows" and extra == "gui"
41
+ Provides-Extra: embeddings
42
+ Requires-Dist: perch-hoplite; extra == "embeddings"
43
+ Provides-Extra: all
44
+ Requires-Dist: birdnet-analyzer[gui,server]; extra == "all"
45
+ Provides-Extra: dev
46
+ Requires-Dist: sphinx; extra == "dev"
47
+ Requires-Dist: sphinx-rtd-theme; extra == "dev"
48
+ Requires-Dist: sphinx-argparse; extra == "dev"
49
+ Requires-Dist: pytest; extra == "dev"
50
+ Requires-Dist: ruff; extra == "dev"
51
+ Dynamic: license-file
52
+
53
+ <div align="center">
54
+ <h1>BirdNET-Analyzer</h1>
55
+ <a href="https://birdnet-team.github.io/BirdNET-Analyzer/">
56
+ <img src="https://github.com/birdnet-team/BirdNET-Analyzer/blob/main/docs/_static/logo_birdnet_big.png?raw=true" width="300" alt="BirdNET-Logo" />
57
+ </a>
58
+ </div>
59
+ <br>
60
+ <div align="center">
61
+
62
+ ![License](https://img.shields.io/github/license/birdnet-team/BirdNET-Analyzer)
63
+ ![OS](https://badgen.net/badge/OS/Linux%2C%20Windows%2C%20macOS/blue)
64
+ [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
65
+ ![Species](https://badgen.net/badge/Species/6512/blue)
66
+ ![Downloads](https://www-user.tu-chemnitz.de/~johau/birdnet_total_downloads_badge.php)
67
+
68
+ [![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)
69
+ [![Reddit](https://img.shields.io/badge/Reddit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/BirdNET_Analyzer/)
70
+ ![GitHub stars)](https://img.shields.io/github/stars/birdnet-team/BirdNET-Analyzer)
71
+
72
+ [![GitHub release](https://img.shields.io/github/v/release/birdnet-team/BirdNET-Analyzer)](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest)
73
+ [![PyPI - Version](https://img.shields.io/pypi/v/birdnet_analyzer?logo=pypi)](https://pypi.org/project/birdnet-analyzer/)
74
+
75
+ </div>
76
+
77
+ This repo contains BirdNET models and scripts for processing large amounts of audio data or single audio files.
78
+ 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.
79
+
80
+ Feel free to use BirdNET for your acoustic analyses and research.
81
+ If you do, please cite as:
82
+
83
+ ```bibtex
84
+ @article{kahl2021birdnet,
85
+ title={BirdNET: A deep learning solution for avian diversity monitoring},
86
+ author={Kahl, Stefan and Wood, Connor M and Eibl, Maximilian and Klinck, Holger},
87
+ journal={Ecological Informatics},
88
+ volume={61},
89
+ pages={101236},
90
+ year={2021},
91
+ publisher={Elsevier}
92
+ }
93
+ ```
94
+
95
+ ## Documentation
96
+
97
+ You can access documentation for this project [here](https://birdnet-team.github.io/BirdNET-Analyzer/).
98
+
99
+ ## Download
100
+
101
+ You can download installers for Windows and macOS from the [releases page](https://github.com/birdnet-team/BirdNET-Analyzer/releases/latest).
102
+
103
+ ## About
104
+
105
+ 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).
106
+
107
+ Go to https://birdnet.cornell.edu to learn more about the project.
108
+
109
+ Want to use BirdNET to analyze a large dataset? Don't hesitate to contact us: ccb-birdnet@cornell.edu
110
+
111
+ **Have a question, remark, or feature request? Please start a new issue thread to let us know. Feel free to submit a pull request.**
112
+
113
+ ## License
114
+
115
+ - **Source Code**: The source code for this project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
116
+ - **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/).
117
+
118
+ Please ensure you review and adhere to the specific license terms provided with each model.
119
+
120
+ *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.*
121
+
122
+ ## Funding
123
+
124
+ This project is supported by Jake Holshuh (Cornell class of ´69) and The Arthur Vining Davis Foundations.
125
+ 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.
126
+
127
+ The development of BirdNET is supported by the German Federal Ministry of Education and Research through the project “BirdNET+” (FKZ 01|S22072).
128
+ The German Federal Ministry for the Environment, Nature Conservation and Nuclear Safety contributes through the “DeepBirdDetect” project (FKZ 67KI31040E).
129
+ In addition, the Deutsche Bundesstiftung Umwelt supports BirdNET through the project “RangerSound” (project 39263/01).
130
+
131
+ ## Partners
132
+
133
+ BirdNET is a joint effort of partners from academia and industry.
134
+ Without these partnerships, this project would not have been possible.
135
+ Thank you!
136
+
137
+ ![Logos of all partners](https://tuc.cloud/index.php/s/KSdWfX5CnSRpRgQ/download/box_logos.png)
@@ -0,0 +1,125 @@
1
+ birdnet_analyzer/__init__.py,sha256=uu_feKfRZNl6hVLvjyy88jpW3ZXBmvcrlkSwY_GuJrk,382
2
+ birdnet_analyzer/audio.py,sha256=rZRa46DHbxbSG-w7x82CnnjwC-KJzFYha7Dflsbpq9c,12394
3
+ birdnet_analyzer/cli.py,sha256=Phdi7VdCiEcAyGTW7wLxtDC2fOyisVO605_Jv4KpiN4,29383
4
+ birdnet_analyzer/config.py,sha256=xj7boQhWGm0_0M0EPXMhSXqrAn4aJ7ECihC9i-L32A8,7563
5
+ birdnet_analyzer/eBird_taxonomy_codes_2021E.json,sha256=tH60OaiVNjDvaRpBEmr3Y6ir62ubXQkwUwgKR16jBsQ,1445193
6
+ birdnet_analyzer/model.py,sha256=Ax0dtwDpTDqmKP0eCrZqm3-iYtLEcuEjPK282YIwqJU,41175
7
+ birdnet_analyzer/playground.py,sha256=saWZVTHZQ4Di4pQDZFwA5khqCwX1sxUod5Ba96ESOdo,149
8
+ birdnet_analyzer/translate.py,sha256=qJH55AxuJtg1enIT3Vb3Avk_qqm3heEi-8XXRcX9sMU,3194
9
+ birdnet_analyzer/utils.py,sha256=b35z-pFAR0CyCigWzrBuk1JNhWLwmczr2Pq_wik7EIk,14181
10
+ birdnet_analyzer/analyze/__init__.py,sha256=RvAfC08QcazRXcFagcfmmR-vEKk_wZgiwG0TuTTXw5I,85
11
+ birdnet_analyzer/analyze/__main__.py,sha256=csRWE3Rk3o5sFLTKfJF-vx6C64ld504Vxi3UGbWVZAI,57
12
+ birdnet_analyzer/analyze/cli.py,sha256=L-dkCm5Jgzj4f-9CxY9_VD816roA9JLAL9vXVkFnTPg,548
13
+ birdnet_analyzer/analyze/core.py,sha256=IIyiTCAZrRgauV0u1kYENeDdmTgPrCivS4Xvzc5lKTU,9431
14
+ birdnet_analyzer/analyze/utils.py,sha256=1O8LcX5e8pbqrow6yLQv4u62J5qS0A2kVBLE-lZ1-eE,25082
15
+ birdnet_analyzer/embeddings/__init__.py,sha256=CrtRxFHhbVx-Y664-pnTR0zw1o7Jkxer5K64mpQBOY4,85
16
+ birdnet_analyzer/embeddings/__main__.py,sha256=-AV5nKugIwDfLY3JLpqSiv-cOHBRjTGseWb2wj8rDhg,60
17
+ birdnet_analyzer/embeddings/cli.py,sha256=yV-Q9IhTvoP1GPtJH2w9-t8xgyslvdDesfCessklLk4,282
18
+ birdnet_analyzer/embeddings/core.py,sha256=oW7G-6jAf4HrLlBi2vMV71gi34sJHzd-I9VswGcuIoE,2769
19
+ birdnet_analyzer/embeddings/utils.py,sha256=E_T7ylrH5ce7CxnXUzcscf64D-Y65ySr-oHtitMQp1k,6116
20
+ birdnet_analyzer/evaluation/__init__.py,sha256=RXQcm8IeWwD_eD959B9pKVgkmuC7qr8uAzxc9GNeVOY,8811
21
+ birdnet_analyzer/evaluation/__main__.py,sha256=P7BHAubmVZCVgpNNkz7lqeWLhgXi-uaZvKTYUcPNAHg,56
22
+ birdnet_analyzer/evaluation/assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ birdnet_analyzer/evaluation/assessment/metrics.py,sha256=n4Zg8Go4PB0Z05fzATUr_n69VTQoN4vInMcaCaZsKGQ,15500
24
+ birdnet_analyzer/evaluation/assessment/performance_assessor.py,sha256=zU11swKFR3YMFmDfKC0Rg-OVR7Cynwynsx-iQm05iCM,17294
25
+ birdnet_analyzer/evaluation/assessment/plotting.py,sha256=A96-Y7zuHIi6Ka1oWRzDS_9mVr1L4gMNbsNowsm2pLg,14727
26
+ birdnet_analyzer/evaluation/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ birdnet_analyzer/evaluation/preprocessing/data_processor.py,sha256=NezEiR1Xn3Ht6x2-u7kMLVZGLxylRPHByc8B5nWeqZU,30580
28
+ birdnet_analyzer/evaluation/preprocessing/utils.py,sha256=YvuPxUb_OE6-lkDg54QNfSqiST2RYVVt4yJC2vUa2Vk,4044
29
+ birdnet_analyzer/gui/__init__.py,sha256=PPo-abSMH1kDTx9F7o590PTOHUp4kNlOK5cskipjVZk,675
30
+ birdnet_analyzer/gui/__main__.py,sha256=PCBwaF6cjjp8iN8pIe_y5gKdzwOUhQL6HWLo7ftD6uU,49
31
+ birdnet_analyzer/gui/analysis.py,sha256=d8QpkSodiHnL0AFFK_DG4iiooDIHfAOU3pL2ypTB0GM,6341
32
+ birdnet_analyzer/gui/embeddings.py,sha256=WRTaKjpVMaiacEbx3aZM2mjwZtEd77Jf_z9S_3JDNoI,25147
33
+ birdnet_analyzer/gui/evaluation.py,sha256=l661T4etnwTSjtr-ZETUBWuLS_re3ZJYot6BeTqHq4U,34423
34
+ birdnet_analyzer/gui/localization.py,sha256=fiekurpvVrkqprXT0xKpVjsDZM24RXHFs0VRm7TDB6c,2539
35
+ birdnet_analyzer/gui/multi_file.py,sha256=nRE2EQTlRfPCU6wPv17RAjUY8SNeWATJd3SNv9fGzGc,8208
36
+ birdnet_analyzer/gui/review.py,sha256=rpjFLyi7a6G9jkk1XtgtBW9wmBSmxjTibpJ47WYrivo,20441
37
+ birdnet_analyzer/gui/segments.py,sha256=FboUZGItJEEvfY32HKJKBi5YDFf5Onzyc6Cb16KjS6w,7286
38
+ birdnet_analyzer/gui/settings.py,sha256=JvW63SBOUbzkjPTDwLCLpY31BDD0xZl3xXi3swUYpls,4163
39
+ birdnet_analyzer/gui/single_file.py,sha256=5etnQ_90n0BCMVR8j2KBuQ8OIiOaVQHCU4SIyJ7uIK4,9035
40
+ birdnet_analyzer/gui/species.py,sha256=CKMfX6PewKoDNDZzaLrQtdTOimU2B5R3quGAahv3niI,3133
41
+ birdnet_analyzer/gui/train.py,sha256=0lhhkh8jMma_86gIi5JNPMQGNiUUsZkdsglyC-setuY,28243
42
+ birdnet_analyzer/gui/utils.py,sha256=7g2yt1UKCflPKvbOGBJz5ZIv-KftnNobNi9igleBgFQ,29629
43
+ birdnet_analyzer/gui/assets/arrow_down.svg,sha256=tDFhvP9dnBKUb8LCN1W2X_Ycl6M6nHIerRh3VbZLq3M,274
44
+ birdnet_analyzer/gui/assets/arrow_left.svg,sha256=nw6Wg7r9lI8QwWyqFiBaJtwOLkr6YvY885y8voIisgk,274
45
+ birdnet_analyzer/gui/assets/arrow_right.svg,sha256=YOAfYpENl6Zv-hF6JsyZaVuqNNWe7uDRufrSlgrADTg,274
46
+ birdnet_analyzer/gui/assets/arrow_up.svg,sha256=YiM-8AeeSVxemH6xOXhBA0kN2npfpMSD_wtePDRFcLg,274
47
+ birdnet_analyzer/gui/assets/gui.css,sha256=OVOAdccMh-H73_sWvb9Aso2rCUBu4GWj1gXHDv1tYZ0,513
48
+ birdnet_analyzer/gui/assets/gui.js,sha256=wuEXvRZtx7gX8WaZyF3US7JpuKiRXCeWowbi3Nqnmbg,3727
49
+ birdnet_analyzer/gui/assets/img/birdnet-icon.ico,sha256=JUx5NGWVerz16p38WkYJeu3C6JO0Hx5uTOqMA-Suedg,24985
50
+ birdnet_analyzer/gui/assets/img/birdnet_logo.png,sha256=yPMHuNBiHil_sZ476ntAKByc8lV03Fxdl2llxmVvCt4,24526
51
+ birdnet_analyzer/gui/assets/img/birdnet_logo_no_transparent.png,sha256=uLZ3QAHAMUXLlgf7fh1VYGjDnK8Jo8sOx2cqLn04fwo,21538
52
+ birdnet_analyzer/gui/assets/img/clo-logo-bird.svg,sha256=6v_ODxVyO5hMPzJuSGrVWQuwmGy75quU8tyYadm8TpA,1844
53
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt,sha256=-LYC4xPd_Jc4kyXXPUbpJ-NoD52v2etNHgYyIIn208o,265109
54
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt,sha256=thc4I1ZlH4A783YeJCyOj-iJByybe_gosoJLoYhEI-k,271450
55
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt,sha256=F0M11jjoaxkKJQS3iG9lYgSJgjKFhtn6UsiMm4lj3lg,288869
56
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt,sha256=z6Fz9g7_kWY2lhorYVwIuTiiYMVSWL-du601n1mNUSk,269018
57
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt,sha256=mQmUlUPJASBynDwYanDwETSE-r_LrK9eFNZ32zTDfno,268958
58
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt,sha256=MiwmWIZnUqTe-5VkzLmta6ACZtt3PdvNf-5dCavTlS0,264101
59
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt,sha256=t47JSD29j64Aru3MpMowWDTdN7gl7S7tAcG5mJD0v04,258765
60
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt,sha256=xi41K-blZxpupAotaTpzYWSo_mhOB_mnuYSe8AxSibw,279688
61
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt,sha256=fCEsH2gNHacCQ7oHCgoKASj0EK7kQe07KrQw9pbnXcY,266416
62
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt,sha256=JCiJdzvCijjcv6-qjwxL5FqpUBBOcCfPOUPW166rxmY,263370
63
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt,sha256=uYi1kuKpVbcISBuZbIYVWWEbzi_YUsi3i-mMfbBet7g,250158
64
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt,sha256=cbaVkFcwCS_pzHHbXk3DlpwORq0zIn6vCZhUK5fNYzI,267093
65
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt,sha256=Nc8S1OhJrHB-5LEaSaBbgqo8A2fkz79WFcI01nfq1XM,272116
66
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt,sha256=oFn1LTOahsSsaWN40Z3KCep-B5sBODjEWBI6npX0Nuk,265785
67
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt,sha256=335BKlWV7eyM16TlQGIQAfFbBwCu_llJqefsZEAFsyI,266569
68
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt,sha256=jVtSuPxdoKzWnDcNi2s33VED30tmf76SZy_FjAsD7CA,263760
69
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt,sha256=OBTdC5zUVY4b8i7M0d8aABA_XeXXGwUAT5BjqLVZMD4,255369
70
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt,sha256=ctULcUrBr4NA1phdeg25Bq6PUmW9om1VpMusZ8sPzvk,266346
71
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt,sha256=K09cg31P4EWxMIDJ4ha5ZXnhQ2sy1AEIKXfczOWiAEU,316667
72
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt,sha256=s1T7E5jtaoAubdl8A4XHq1fkrEZMTk11I3lASXWwm2k,265837
73
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt,sha256=3rAr3ppyws5RbSgidg7yKVoESwfRWnK753ag5LVC2pc,269173
74
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt,sha256=aRdgxzpBLi2QrKg3T7g_kh0RAZ5meYKRX6gLFNY8qsg,279595
75
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt,sha256=9h35g6VXBzAtiWvraq2bkt0iEiTNKoK46mvIdpj3dmY,256021
76
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt,sha256=y0o-ryeRhqKugHQJ-0sMeyUz5mbDxmWO5BUm_iHj0F4,235946
77
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt,sha256=hyFN6AzkjvBKV3HUI8WBf3W8kw-bFNC478F4_wZ0DXY,268811
78
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt,sha256=HsZdPb1ykJwEbuRrpXHYDuCYv90gnBuCJcRUevtStds,266757
79
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt,sha256=DR1VGBLeCQUDcRxh8fPxeApYJvq09gL_gDzDmOU9uQ4,265790
80
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt,sha256=a1WWuNtvErej1Ei4V2xr-o5e8lPHAQKNDAVicQogssk,268350
81
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt,sha256=ddNCzXtrYFb2FsC80G3mqDqRagvw8sZjHINqrhYj6Yk,377786
82
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt,sha256=Hyl7hiPNH6UG_kNkXwGUHvlmFZ1hSpz3alnoP4eWTms,269759
83
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt,sha256=rNBVPPIqDZAalLRnD709tc6pd5lLtCyuaABE1Tviygw,265347
84
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt,sha256=_E2xmdzLD85U-_Uj4kMDuQ19eNOKhdPfBO2s78-V4SY,273566
85
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt,sha256=fbDGmXwC7K6VB3V2JNULs4qw_tg8uuXh6AXnrpkbhPw,257108
86
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt,sha256=gDeJwRICBQGgrxH02nm-M7XJ7RdN36NaHZuLrSjuBMU,294943
87
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt,sha256=j-uFnSR5nokPBsfh2lhP_yVDT-DPCqkjg6tumRE4I0g,280870
88
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt,sha256=PQ0HJJe3Wt6L3k7kyslQwYEnAyhFKZvTqFOT06VoURI,374502
89
+ birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt,sha256=JSRNBBxTIrXOz8WxsYTMUfiQ3H-BzoieV8XUZ5BnDqo,230621
90
+ birdnet_analyzer/lang/de.json,sha256=luRLrOG4a0nvFXbk9Jomoj8Ke_zvjbN_7K93FWH7n1w,28690
91
+ birdnet_analyzer/lang/en.json,sha256=7APG8SUj1VoMk81vNCjlYD7-1bKTTj33hSoroA3-s7I,26378
92
+ birdnet_analyzer/lang/fi.json,sha256=ORxPr4Rzpp69z8TDsQaVc_REwU_RdjqV7fa8c8UKOWM,27218
93
+ birdnet_analyzer/lang/fr.json,sha256=bvpnTRxD57dTvZLdJ5jmlkOE3V9ney7XzhVaxKxMIlI,30071
94
+ birdnet_analyzer/lang/id.json,sha256=uzlMf928NqugY1t-h_fxSnzHJHzeslLJEfEL9b2CkJI,27176
95
+ birdnet_analyzer/lang/pt-br.json,sha256=RjGDQ8phMJ_sFzb6aMGzfONpCAJWwQe7xM4kk9x5AXc,28798
96
+ birdnet_analyzer/lang/ru.json,sha256=XZ4qgjFvP5YUZSHQgeohHtd03dY_Nt7gVXYZmgSczQ0,37907
97
+ birdnet_analyzer/lang/se.json,sha256=6q13-usmppIKGpME96UN-6ZdrFBpdUXXUYlxPUoUSDg,26938
98
+ birdnet_analyzer/lang/tlh.json,sha256=B0CMk7LZZH8A54I5y01WYUX6o-ocLAlYlMWj4fdTqZE,21184
99
+ birdnet_analyzer/lang/zh_TW.json,sha256=hCaNUxwzxEzIEIVL3fCy0hxazgjO3HOKkU9JXKetewY,25619
100
+ birdnet_analyzer/search/__init__.py,sha256=kFAPQVhA474eNP3paME5p_ssVyMGVSF37SmJlyVuRG8,73
101
+ birdnet_analyzer/search/__main__.py,sha256=lfAxv0_v2e6IkCCFX3UOAle59TojzRnBXPPtkHjbEQM,56
102
+ birdnet_analyzer/search/cli.py,sha256=sjx3GL5oHWDfy_Pd6_hkmZ-1MSEuT1f3fmV1WyoVjUA,225
103
+ birdnet_analyzer/search/core.py,sha256=lxI2DHPZhs0iSp_SaU3erjgtlN2eVWH7RzuVXE0FVHY,3224
104
+ birdnet_analyzer/search/utils.py,sha256=GRPMwXsSjBLqpA9xguH0MMWP4WUZypZ_3yHIkCbFy-E,3767
105
+ birdnet_analyzer/segments/__init__.py,sha256=cg5SfzNbyo4FdEXAiFoT6xhLOv1q3OiKwO105I0gezc,79
106
+ birdnet_analyzer/segments/__main__.py,sha256=60DMV3hegLhbZS5vTmyqPUslRZi9cWGQE7RejrUMMnE,58
107
+ birdnet_analyzer/segments/cli.py,sha256=rjGpi5UQT78fb4J_3rnAVcxQgdjD2wygW0-LnDQsl1c,272
108
+ birdnet_analyzer/segments/core.py,sha256=tjunHskqoWbb-5T2Xrj2DlfqCp90Lj-ENYBFQzQWQq8,3029
109
+ birdnet_analyzer/segments/utils.py,sha256=XobRj1vZ96KC0-ho9c1dU48XNkd5Ux9uKfmfIvyxsWY,14255
110
+ birdnet_analyzer/species/__init__.py,sha256=FbGmSwvfbptKWcI0IpBRQlKjP5Ybw572Q7ToCwYlCVo,76
111
+ birdnet_analyzer/species/__main__.py,sha256=N7S186eLkMndEoWUz1RLSmuH3Jba2vgjs6_34parGHo,57
112
+ birdnet_analyzer/species/cli.py,sha256=37bXotDAPAXejOLDq4kCPmuMGvk6lGCr-t1lvTlw7gA,269
113
+ birdnet_analyzer/species/core.py,sha256=rhuhtvGhJyhBwiy4jbGrSvlyUjzi5eBUSOCF8WCN0bY,1593
114
+ birdnet_analyzer/species/utils.py,sha256=AA3WkdN7BqJg2KljXVtI3Ri-5Pkh6fqjZlU9B9yzH_o,2617
115
+ birdnet_analyzer/train/__init__.py,sha256=WhV9idYqe2mlzELSnQqRGjzBoDDg_I99P3xs3J6oINQ,70
116
+ birdnet_analyzer/train/__main__.py,sha256=ru_nZbTueN1Ei2AUwQEcksmaoF_oRh_dbHayqrXiUI8,55
117
+ birdnet_analyzer/train/cli.py,sha256=Xb-IJCoWzdzpKW5qEe1e9iiVx-IfpevHlP-5Qyj2Shg,263
118
+ birdnet_analyzer/train/core.py,sha256=zwvfeC_1evgGNU4ierarvrpybgjt0BZdG00NdwwfQP8,5780
119
+ birdnet_analyzer/train/utils.py,sha256=_8xcA1AiAjxmZySLXCJhWDmaIepVyV4X163KLey3BzI,36762
120
+ birdnet_analyzer-2.0.1.dist-info/licenses/LICENSE,sha256=s8_PfkQgudIsIZPG35DG3uL7HHVeTBipFi9WXn477s4,1073
121
+ birdnet_analyzer-2.0.1.dist-info/METADATA,sha256=FGWC0fk5N3sTD1-zYc3ImJ42M5bh5DKWrT_o4H007SM,6976
122
+ birdnet_analyzer-2.0.1.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
123
+ birdnet_analyzer-2.0.1.dist-info/entry_points.txt,sha256=zggnZKhifJ--I46o6EWvPrxCsLzyyDu7Df0zTjcsfJs,457
124
+ birdnet_analyzer-2.0.1.dist-info/top_level.txt,sha256=A7Ss-Ce3vcccmpepTDG3jDrfwBakUDy99HclK4xlazg,17
125
+ birdnet_analyzer-2.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (80.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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,117 +0,0 @@
1
- birdnet_analyzer/__init__.py,sha256=WsMrm408vRGSfIRw7h86j24HxFa3QoVdegqtUIPVX6g,351
2
- birdnet_analyzer/audio.py,sha256=SWppZOtAiAKdcYRq1EHch-f_5MS-oE77Mtjbzp-84XE,12235
3
- birdnet_analyzer/cli.py,sha256=L3Kt0GrT3XculgDyydTqT6GLxA8RnJjdt_PVhqzXYBA,28612
4
- birdnet_analyzer/config.py,sha256=l_uiug-qw5aFNCw26yC-Qwud1ILSWv02GyBySwNVTws,7321
5
- birdnet_analyzer/eBird_taxonomy_codes_2021E.json,sha256=kIBr4hpGTfjfLsGKEH2-DZLCqnJzEUKvuh52GTySRnQ,1419914
6
- birdnet_analyzer/model.py,sha256=F7pL2LBJdecnjGT4O-ONNkunh5i3r8puNOqZmrHEC5c,40878
7
- birdnet_analyzer/translate.py,sha256=bhWe28Zdh5gk0q8r7o-I5DwdK-CihzXu1_j1__gjags,2957
8
- birdnet_analyzer/utils.py,sha256=m1go-dvd1okpGV8obY9UtoDCOZItW7bP4UTrh0wf584,13745
9
- birdnet_analyzer/analyze/__init__.py,sha256=g31wRy6kGHZMVEL5wg_OFlpva62ivhmguCK1hBJWlzA,80
10
- birdnet_analyzer/analyze/__main__.py,sha256=Rrgxc7k-UvoddimiDbCdM5hJtw7ROOFKAvW1BnztobA,55
11
- birdnet_analyzer/analyze/cli.py,sha256=JLVG3k9VRQ38a2UyzwPwtLtQMO8rSbRP6EHxxAxCgB0,525
12
- birdnet_analyzer/analyze/core.py,sha256=JVCo8PCzD2hGsCjEQXJ_Qb5zCtokPExj8dtsXkYJweE,9221
13
- birdnet_analyzer/analyze/utils.py,sha256=rNT73HVn89ZHvmXzmWM8yQXXH4b3cz04d6EQQGuDpTc,24633
14
- birdnet_analyzer/embeddings/__init__.py,sha256=b_FjCW4p8j1Lg1pT9OsZG3jtgM1xlTUDJkXmpUM5264,83
15
- birdnet_analyzer/embeddings/__main__.py,sha256=cs18y96boZ1UKyXGHFY-98_r-FTuhjiRjZ8jkm_hDLg,56
16
- birdnet_analyzer/embeddings/cli.py,sha256=tTPsva1Nx-_RwCX_P7N3ggH6G8ROfKJbMHd4skrw9-c,273
17
- birdnet_analyzer/embeddings/core.py,sha256=I9UgjL1EOreN6DTs2t9oTGSqNY5D5bKcUF4zzV75VZM,2712
18
- birdnet_analyzer/embeddings/utils.py,sha256=6zrtpRv1du7fFLN9uyGWliZZXUaStoQe38Ao_DyJTCY,6157
19
- birdnet_analyzer/evaluation/__init__.py,sha256=ii5VcftAFx3lgQMCB4yUuomT1BiBmiyQxi5tV6Yytl8,8676
20
- birdnet_analyzer/evaluation/__main__.py,sha256=AsAw3vLt1cvt97ziBIP1iCH1QZsJz7RGzFxeqBZBVTk,53
21
- birdnet_analyzer/gui/__init__.py,sha256=pdXUULAF3zYnHr43IfY5dFeGtGq_mrBN10T1fkIfjwI,833
22
- birdnet_analyzer/gui/__main__.py,sha256=DJqgjkKxZczhR2VoepRXGIowshGKjXeAoDZ9Ldqf2Fk,46
23
- birdnet_analyzer/gui/analysis.py,sha256=qvkd2qdJ19ukA2oucyUCKhQfOs-f9MPSlKmmbdX7Uzk,6162
24
- birdnet_analyzer/gui/embeddings.py,sha256=I1AMU_mZAuEFq9RbBnWz-bzfvVa0H8Ls4tvJxQoxPLc,24578
25
- birdnet_analyzer/gui/evaluation.py,sha256=fUOhQt3B52UBS7K1ENtTTHiyLJZUalbyDhdX8gnuV9U,34572
26
- birdnet_analyzer/gui/localization.py,sha256=hfeBQsv_0r1TRADD5ReyhFIIj9J8zTPzdGDh6baehO4,2311
27
- birdnet_analyzer/gui/multi_file.py,sha256=N6eQP7f4rj2swbMB2yRYlHPyfa0hl3lRAcFgCzR-22c,8094
28
- birdnet_analyzer/gui/review.py,sha256=U1MINUlZuhLF2zPdOCNskgWAWpd7yJTcvpPHDQR1h2w,20297
29
- birdnet_analyzer/gui/segments.py,sha256=ETUm4ZDK7352c-dE-K9xsPZ3PajxmbNAMnkP-tEdHpk,7095
30
- birdnet_analyzer/gui/settings.py,sha256=rxDV2Xiwr1TpeVdunHmAqkNYXyqJ8GNGuYHa6kB1R0s,4050
31
- birdnet_analyzer/gui/single_file.py,sha256=eA0a9-DT-PaoyEUmwbVMBYml8aDKFbJRfcZi0RtvZHo,8815
32
- birdnet_analyzer/gui/species.py,sha256=bQef7eksdy7mxbQyZ0pLrvzutnRKT987h90gJbCLAIw,3045
33
- birdnet_analyzer/gui/train.py,sha256=WL-TofrE63e6RAgY6XKG5MzOt_SAADE60942u4b-jVE,27736
34
- birdnet_analyzer/gui/utils.py,sha256=gSOwOQmtDmheaZjIbaVNUS8vEsdfzipS-4xx5SJRs10,29268
35
- birdnet_analyzer/gui/assets/arrow_down.svg,sha256=2fCEyUwf3IOHWRPXnTcdR5Tm1HhOtXLbOWlYORv_ZWQ,270
36
- birdnet_analyzer/gui/assets/arrow_left.svg,sha256=pHyh9nAgjAXFB7ybSLyVI6zygYeJqjgPj95Q3oa6S0g,270
37
- birdnet_analyzer/gui/assets/arrow_right.svg,sha256=pUux1bnO_xWXuYDEYzoC0_n5fjE38BuK_pvkt85t71Q,270
38
- birdnet_analyzer/gui/assets/arrow_up.svg,sha256=CSgm3QzzeThlCxLToc1S6Y5DGQekxMsli5BAqfPhmdM,270
39
- birdnet_analyzer/gui/assets/gui.css,sha256=glAsx7GBj-YBYPsBddcCUv9z59ZIjLu8d-t27uEsEJY,485
40
- birdnet_analyzer/gui/assets/gui.js,sha256=SxBEErqiwhjUBKgBbCuwLT0aDL9Zgvd5SG6Y-b7T4Ck,3634
41
- birdnet_analyzer/gui/assets/img/birdnet-icon.ico,sha256=JUx5NGWVerz16p38WkYJeu3C6JO0Hx5uTOqMA-Suedg,24985
42
- birdnet_analyzer/gui/assets/img/birdnet_logo.png,sha256=yPMHuNBiHil_sZ476ntAKByc8lV03Fxdl2llxmVvCt4,24526
43
- birdnet_analyzer/gui/assets/img/birdnet_logo_no_transparent.png,sha256=uLZ3QAHAMUXLlgf7fh1VYGjDnK8Jo8sOx2cqLn04fwo,21538
44
- birdnet_analyzer/gui/assets/img/clo-logo-bird.svg,sha256=6v_ODxVyO5hMPzJuSGrVWQuwmGy75quU8tyYadm8TpA,1844
45
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt,sha256=s9OSWuBKzFFLAGYfmBtfcUrI51D4Pwc4l5fMu88Z9-Y,258587
46
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt,sha256=GVW-fTEIVd-NDXBfA9IDyhIVDFLn4UyWEwydIjznz0U,264925
47
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt,sha256=MslruFWz9XskuLiKfeJZ5O8QX9YLOZm2XjnNPCjBeXU,282342
48
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt,sha256=WCFOMto5ySgJH5YMs9EtAtm6d7I5X2mIQ6OR2N8ZBjM,262496
49
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt,sha256=VAYxrDE0lJQZmEaccX4avQfcfgvnhSq_tW0k2ZPfm20,262427
50
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt,sha256=Sm71oyC3cJ0bYAK_GvC77bTsJB2vsFAD7JZj8NjwBCY,257578
51
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt,sha256=V8HK1SIeoS2ZPnYnSy10qWWhQ4k9lrosNHOzsGAEe4Q,252243
52
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt,sha256=d2ax0DFHe4b-jRfnQgPpp5R_br68PDn2sh2EbXXBEcM,273157
53
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt,sha256=SHk3tq0TK4UGIVUjIJqHuGrcnc6OXtMEjOkmgYnd3T0,259894
54
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt,sha256=HF-hXI33v8Ms54OnOKh9S0REW1nvjE1w8F9bFZyZbak,256846
55
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt,sha256=ZGaenUEkOJARjAOpoZLuX7eYa1mymz7zxeqpVfzeLaU,243634
56
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt,sha256=45IoFZnUorMx5EcbzngzE-ukxpFQx7T_T0TfMFiA5rM,260569
57
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt,sha256=Yhw3tJeep2YAK-uY9cWxsa8Irvyfx9OKcEnrK--3CwE,265594
58
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt,sha256=wzCL0-4CD-Z3SE6t_Cx2GpkKe0SUXtC3vfdJ0MG2SxU,259263
59
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt,sha256=L9qSnG5ixgMTDiRYaaEIsZ0a_LdNaIFLQkwUHu5uZZU,260045
60
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt,sha256=0WHYKuqMDSwvB__zAJVLWT2thzg-RyQzZNWAvC_QiB8,257235
61
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt,sha256=gmMDt6dnvDBvDZgEmhEFZokROduBUwediV5TnmKP64Y,248847
62
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt,sha256=HLJ4q3wHiDrjFLk2KM1r2xWplgVCCoZnmbdW_HbsD5c,259823
63
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt,sha256=FYxTYGdtf8FUuV7X8WHPhFvpyiGaZ5YJAUY93YcLY2I,310145
64
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt,sha256=HKGMzRETng2yoOnuUVQrZyFFYLj16uGtemGodnILXmA,259315
65
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt,sha256=eX08gla8rCdqWVxP2lsmawXxiE9_33iQusfDba_-FOo,262650
66
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt,sha256=Vzvb-vEVvbrJHX2C1a2awmAr8110xhHt0zAn56fMBjc,273073
67
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt,sha256=--61TdEmuzUptBOqmttrYFeFUyuvGG15Ra8FH1WUPsc,249498
68
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt,sha256=2yOKOn7Xwk-f4N8L3OB8FgWVcxXou4PleHgxvca_XNQ,229423
69
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt,sha256=zSzQRM0blPNjEzlbPiiUCNnbETtkGQHAyq3Z1TeTH2s,262289
70
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt,sha256=dDm82dw5S68bAKZMJHy4DVELxzdgG5RmCLQbXfrLxmQ,260234
71
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt,sha256=5JMpaQA9E-7Pf3ohS_B8gh9r0ntd--gUUol04WwZ6y4,259267
72
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt,sha256=V2eqdJ4e-F9ov5ZMBQZdKhlgN08-bT2Y9hPEF_q5lg0,261825
73
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt,sha256=hMXy934AhEogTKO4jrnYBo0u_F-12nF-NgzUtEEW2Iw,371255
74
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt,sha256=x4DfTKz_emyRhMhB845p6biWxQBUvH0nnlBJhB45y1U,263237
75
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt,sha256=ChqWgPapSNovzaS7DYlJdtv95tbSrwcXU_MkNjeClKI,258825
76
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt,sha256=NBrRaR_jwureXFjvJcRXCW6jWrDjsjy8WT_MONZtRBA,267044
77
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt,sha256=GX_pIGOZfAXgYCFQ7Tv0pwBp2uRGJD7Yq7v59LGA0WA,250585
78
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt,sha256=7iIENS7RcWp_UnNmQQXcmQVFoF3uQmnWA5s-qnGuWlE,288421
79
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt,sha256=FInxZFtUCRsdSX2RrVMJmW-8N9PqkY4TUNO0uh_maLE,274345
80
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt,sha256=Pz-ND7r1sZRjru7DcpfeKwveF8kfnidC1K5wuJlXwUE,367971
81
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt,sha256=d3-eD5xZ7GZGuIf-QzlnJYgBTsKKSlVEx6WiG4gXkIY,224099
82
- birdnet_analyzer/lang/de.json,sha256=s5OOuVB9WcFokKkL3i4VELx2E0-V73EUj84-cS0cd8g,28356
83
- birdnet_analyzer/lang/en.json,sha256=R1w9kRIB_cEp__gSMSjvjhNuZGHP27n5k6E5cmyp_j8,26044
84
- birdnet_analyzer/lang/fi.json,sha256=jDkE0-jVC4xDyn3kyFsSlNQJAj8I4O7y_Z1MWF8IhQY,26884
85
- birdnet_analyzer/lang/fr.json,sha256=71WppVCiTBLjjZ5k5JqaE6JBlCv5Lz8gUzukEz7l-MU,29737
86
- birdnet_analyzer/lang/id.json,sha256=17eZsV5XXc4mLxWnxfTeRxdNXcqchtS41Zn8AQmbz9k,26842
87
- birdnet_analyzer/lang/pt-br.json,sha256=PJAYh_BlpCfQAXc_moEdHJag81RjLQUpsD65F6jsH1k,28464
88
- birdnet_analyzer/lang/ru.json,sha256=Q5lmBFU1jN4JTp5u5BVPMqwK2O_s5eIXQFfm5rkCvO0,37573
89
- birdnet_analyzer/lang/se.json,sha256=oUIKoeXprqt8S50FlUFsgrFTpjmETR-gKfvzp5AX6cA,26604
90
- birdnet_analyzer/lang/tlh.json,sha256=OaCQi7-8_DpHsrQCOzYSostw9-nyrFUQmUNL0rA-pJc,20850
91
- birdnet_analyzer/lang/zh_TW.json,sha256=MVoVF9AnxvRCdsIZS2M60PVbmpT1SvHFoLE0tR61aJE,25285
92
- birdnet_analyzer/search/__init__.py,sha256=gRKewsLYCa8hJxkXoFnp1uj_4ytWT1cve8KohBjHarc,70
93
- birdnet_analyzer/search/__main__.py,sha256=byePI8VG1KsbBWgcI9hMRaLWEKuqbnVQ7x3vQY3-400,52
94
- birdnet_analyzer/search/cli.py,sha256=qrjpaUFKTceX0RrkN4aARfXvwrU9Ld_CIwSUxRD06-A,252
95
- birdnet_analyzer/search/core.py,sha256=Autochi0lYVL8iZsSAeRxWuwxs8nLJm_H1SKdSRVgmk,3143
96
- birdnet_analyzer/search/utils.py,sha256=RYmbst3myc_d8kLDEcl6FjZbhTfjOS5B8_VfKPmoKLs,3747
97
- birdnet_analyzer/segments/__init__.py,sha256=F-ITPPhOaGGNTJzM7Fa1_HVi4vd3UxciRDTNy9exfKk,76
98
- birdnet_analyzer/segments/__main__.py,sha256=td8ngJ1IPLpj_m46XrZsp9qkIK9JprIrKsBLZArNWXU,54
99
- birdnet_analyzer/segments/cli.py,sha256=uax5cdvd0RNGojvzUYWVpKpMR2m2wHP1ltGPgcYs79I,293
100
- birdnet_analyzer/segments/core.py,sha256=yugZc-emhUDFmuJ3kEsCJRt5QdRCURhqtfWSRHVyWYI,2906
101
- birdnet_analyzer/segments/utils.py,sha256=y48403mdurWqrGEkYSl_BiM5WMXpUWBxowHdywe4-1I,14082
102
- birdnet_analyzer/species/__init__.py,sha256=HoKtymO-t4hwDLhEmiKyr6hYITi_kkzOKzqZJxcYX_o,73
103
- birdnet_analyzer/species/__main__.py,sha256=7MxULV0ZdeM5k7uhMY5zDStTDdlrnt91G5OSwOL4nJU,53
104
- birdnet_analyzer/species/cli.py,sha256=CPZmojdFFIYyykD-QrurZPT1J5MD5p7kwWF3DK8EiHw,290
105
- birdnet_analyzer/species/core.py,sha256=MnZXTjelFkGzJDBR1GAnceFT9Vy-H46uFT-CeeGHkPE,1558
106
- birdnet_analyzer/species/utils.py,sha256=i5BC4Xf50aN8BQDEa4np1FIpkmu89FVsFNkF6q6J8_k,2598
107
- birdnet_analyzer/train/__init__.py,sha256=aVKnTzOsMhp92bLKwIrxXcoqKY6jAYXD79t0h0hGm30,67
108
- birdnet_analyzer/train/__main__.py,sha256=MGYLw9XQ9lCEs2Ns8Ro9yd2EVTzktbiaKMuaTkyjgKQ,51
109
- birdnet_analyzer/train/cli.py,sha256=hOmJev8lCF-F1XhpagH7I1mk0yyFr-ruelwP1DvuGiM,284
110
- birdnet_analyzer/train/core.py,sha256=kIOAyMxhbaqdLTytPzgXYx1atElLBpzFgJZDUYnvQ94,5642
111
- birdnet_analyzer/train/utils.py,sha256=ruQMaq9J8ApjdluN7uDe5vG15j6ylzfwoixyFVs8l84,35763
112
- birdnet_analyzer-2.0.0.dist-info/licenses/LICENSE,sha256=oj96wQMMaKj9tZZzGfcdLeLzgYQ1lzD45Pc2kQpXbGQ,1055
113
- birdnet_analyzer-2.0.0.dist-info/METADATA,sha256=A_BknVrU_AEC35OPjdc1IaAkHLdtBWjQWQxth11eBRY,6489
114
- birdnet_analyzer-2.0.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
115
- birdnet_analyzer-2.0.0.dist-info/entry_points.txt,sha256=zggnZKhifJ--I46o6EWvPrxCsLzyyDu7Df0zTjcsfJs,457
116
- birdnet_analyzer-2.0.0.dist-info/top_level.txt,sha256=A7Ss-Ce3vcccmpepTDG3jDrfwBakUDy99HclK4xlazg,17
117
- birdnet_analyzer-2.0.0.dist-info/RECORD,,