birdnet-analyzer 2.0.1__py3-none-any.whl → 2.1.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 (121) hide show
  1. birdnet_analyzer/__init__.py +9 -9
  2. birdnet_analyzer/analyze/__init__.py +19 -5
  3. birdnet_analyzer/analyze/__main__.py +3 -3
  4. birdnet_analyzer/analyze/cli.py +30 -25
  5. birdnet_analyzer/analyze/core.py +268 -241
  6. birdnet_analyzer/analyze/utils.py +700 -692
  7. birdnet_analyzer/audio.py +368 -368
  8. birdnet_analyzer/cli.py +732 -709
  9. birdnet_analyzer/config.py +243 -242
  10. birdnet_analyzer/eBird_taxonomy_codes_2024E.json +13046 -0
  11. birdnet_analyzer/embeddings/__init__.py +3 -3
  12. birdnet_analyzer/embeddings/__main__.py +3 -3
  13. birdnet_analyzer/embeddings/cli.py +12 -12
  14. birdnet_analyzer/embeddings/core.py +70 -69
  15. birdnet_analyzer/embeddings/utils.py +173 -179
  16. birdnet_analyzer/evaluation/__init__.py +189 -196
  17. birdnet_analyzer/evaluation/__main__.py +3 -3
  18. birdnet_analyzer/evaluation/assessment/metrics.py +388 -388
  19. birdnet_analyzer/evaluation/assessment/performance_assessor.py +364 -409
  20. birdnet_analyzer/evaluation/assessment/plotting.py +378 -379
  21. birdnet_analyzer/evaluation/preprocessing/data_processor.py +631 -631
  22. birdnet_analyzer/evaluation/preprocessing/utils.py +98 -98
  23. birdnet_analyzer/gui/__init__.py +19 -19
  24. birdnet_analyzer/gui/__main__.py +3 -3
  25. birdnet_analyzer/gui/analysis.py +179 -175
  26. birdnet_analyzer/gui/assets/arrow_down.svg +4 -4
  27. birdnet_analyzer/gui/assets/arrow_left.svg +4 -4
  28. birdnet_analyzer/gui/assets/arrow_right.svg +4 -4
  29. birdnet_analyzer/gui/assets/arrow_up.svg +4 -4
  30. birdnet_analyzer/gui/assets/gui.css +36 -28
  31. birdnet_analyzer/gui/assets/gui.js +89 -93
  32. birdnet_analyzer/gui/embeddings.py +638 -619
  33. birdnet_analyzer/gui/evaluation.py +801 -795
  34. birdnet_analyzer/gui/localization.py +75 -75
  35. birdnet_analyzer/gui/multi_file.py +265 -245
  36. birdnet_analyzer/gui/review.py +472 -519
  37. birdnet_analyzer/gui/segments.py +191 -191
  38. birdnet_analyzer/gui/settings.py +149 -128
  39. birdnet_analyzer/gui/single_file.py +264 -267
  40. birdnet_analyzer/gui/species.py +95 -95
  41. birdnet_analyzer/gui/train.py +687 -696
  42. birdnet_analyzer/gui/utils.py +803 -810
  43. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt +6522 -6522
  44. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt +6522 -6522
  45. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt +6522 -6522
  46. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt +6522 -6522
  47. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt +6522 -6522
  48. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt +6522 -6522
  49. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt +6522 -6522
  50. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt +6522 -6522
  51. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt +6522 -6522
  52. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt +6522 -6522
  53. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt +6522 -6522
  54. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt +6522 -6522
  55. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt +6522 -6522
  56. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt +6522 -6522
  57. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt +6522 -6522
  58. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt +6522 -6522
  59. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt +6522 -6522
  60. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt +6522 -6522
  61. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt +6522 -6522
  62. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt +6522 -6522
  63. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt +6522 -6522
  64. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt +6522 -6522
  65. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt +6522 -6522
  66. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt +6522 -6522
  67. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt +6522 -6522
  68. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt +6522 -6522
  69. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt +6522 -6522
  70. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt +6522 -6522
  71. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt +6522 -6522
  72. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt +6522 -6522
  73. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt +6522 -6522
  74. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt +6522 -6522
  75. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt +6522 -6522
  76. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt +6522 -6522
  77. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt +6522 -6522
  78. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt +6522 -6522
  79. birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt +6522 -6522
  80. birdnet_analyzer/lang/de.json +342 -334
  81. birdnet_analyzer/lang/en.json +342 -334
  82. birdnet_analyzer/lang/fi.json +342 -334
  83. birdnet_analyzer/lang/fr.json +342 -334
  84. birdnet_analyzer/lang/id.json +342 -334
  85. birdnet_analyzer/lang/pt-br.json +342 -334
  86. birdnet_analyzer/lang/ru.json +342 -334
  87. birdnet_analyzer/lang/se.json +342 -334
  88. birdnet_analyzer/lang/tlh.json +342 -334
  89. birdnet_analyzer/lang/zh_TW.json +342 -334
  90. birdnet_analyzer/model.py +1213 -1212
  91. birdnet_analyzer/search/__init__.py +3 -3
  92. birdnet_analyzer/search/__main__.py +3 -3
  93. birdnet_analyzer/search/cli.py +11 -11
  94. birdnet_analyzer/search/core.py +78 -78
  95. birdnet_analyzer/search/utils.py +104 -107
  96. birdnet_analyzer/segments/__init__.py +3 -3
  97. birdnet_analyzer/segments/__main__.py +3 -3
  98. birdnet_analyzer/segments/cli.py +13 -13
  99. birdnet_analyzer/segments/core.py +81 -81
  100. birdnet_analyzer/segments/utils.py +383 -383
  101. birdnet_analyzer/species/__init__.py +3 -3
  102. birdnet_analyzer/species/__main__.py +3 -3
  103. birdnet_analyzer/species/cli.py +13 -13
  104. birdnet_analyzer/species/core.py +35 -35
  105. birdnet_analyzer/species/utils.py +73 -74
  106. birdnet_analyzer/train/__init__.py +3 -3
  107. birdnet_analyzer/train/__main__.py +3 -3
  108. birdnet_analyzer/train/cli.py +13 -13
  109. birdnet_analyzer/train/core.py +113 -113
  110. birdnet_analyzer/train/utils.py +878 -877
  111. birdnet_analyzer/translate.py +132 -133
  112. birdnet_analyzer/utils.py +425 -426
  113. {birdnet_analyzer-2.0.1.dist-info → birdnet_analyzer-2.1.1.dist-info}/METADATA +147 -137
  114. birdnet_analyzer-2.1.1.dist-info/RECORD +124 -0
  115. {birdnet_analyzer-2.0.1.dist-info → birdnet_analyzer-2.1.1.dist-info}/WHEEL +1 -1
  116. {birdnet_analyzer-2.0.1.dist-info → birdnet_analyzer-2.1.1.dist-info}/licenses/LICENSE +18 -18
  117. birdnet_analyzer/eBird_taxonomy_codes_2021E.json +0 -25280
  118. birdnet_analyzer/playground.py +0 -5
  119. birdnet_analyzer-2.0.1.dist-info/RECORD +0 -125
  120. {birdnet_analyzer-2.0.1.dist-info → birdnet_analyzer-2.1.1.dist-info}/entry_points.txt +0 -0
  121. {birdnet_analyzer-2.0.1.dist-info → birdnet_analyzer-2.1.1.dist-info}/top_level.txt +0 -0
@@ -1,75 +1,75 @@
1
- # ruff: noqa: PLW0603
2
- import json
3
- import os
4
-
5
- from birdnet_analyzer.gui import settings
6
-
7
- SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
8
- LANGUAGE_DIR = os.path.join(os.path.dirname(SCRIPT_DIR), "lang")
9
- LANGUAGE_LOOKUP = {}
10
- TARGET_LANGUAGE = settings.FALLBACK_LANGUAGE
11
-
12
-
13
- def load_local_state():
14
- """
15
- Loads the local language settings and populates the LANGUAGE_LOOKUP dictionary with the appropriate translations.
16
- This function performs the following steps:
17
- """
18
- global LANGUAGE_LOOKUP
19
- global TARGET_LANGUAGE
20
-
21
- settings.ensure_settings_file()
22
-
23
- try:
24
- with open(settings.GUI_SETTINGS_PATH, encoding="utf-8") as f:
25
- settings_data = json.load(f)
26
-
27
- if "language-id" in settings_data:
28
- TARGET_LANGUAGE = settings_data["language-id"]
29
- except FileNotFoundError:
30
- print(f"gui-settings.json not found. Using fallback language {settings.FALLBACK_LANGUAGE}.")
31
-
32
- try:
33
- with open(f"{LANGUAGE_DIR}/{TARGET_LANGUAGE}.json", encoding="utf-8") as f:
34
- LANGUAGE_LOOKUP = json.load(f)
35
- except FileNotFoundError:
36
- print(
37
- f"Language file for {TARGET_LANGUAGE} not found in {LANGUAGE_DIR}."
38
- + "Using fallback language {settings.FALLBACK_LANGUAGE}."
39
- )
40
-
41
- if TARGET_LANGUAGE != settings.FALLBACK_LANGUAGE:
42
- with open(f"{LANGUAGE_DIR}/{settings.FALLBACK_LANGUAGE}.json") as f:
43
- fallback: dict = json.load(f)
44
-
45
- for key, value in fallback.items():
46
- if key not in LANGUAGE_LOOKUP:
47
- LANGUAGE_LOOKUP[key] = value
48
-
49
-
50
- def localize(key: str) -> str:
51
- """
52
- Translates a given key into its corresponding localized string.
53
-
54
- Args:
55
- key (str): The key to be localized.
56
-
57
- Returns:
58
- str: The localized string corresponding to the given key.
59
- If the key is not found in the localization lookup, the original key is returned.
60
- """
61
- return LANGUAGE_LOOKUP.get(key, key)
62
-
63
-
64
- def set_language(language: str):
65
- """
66
- Sets the language for the application by updating the GUI settings file.
67
- This function ensures that the settings file exists, reads the current settings,
68
- updates the "language-id" field with the provided language, and writes the updated
69
- settings back to the file.
70
-
71
- Args:
72
- language (str): The language identifier to set in the settings file.
73
- """
74
- if language:
75
- settings.set_setting("language-id", language)
1
+ # ruff: noqa: PLW0603
2
+ import json
3
+ import os
4
+
5
+ from birdnet_analyzer.gui import settings
6
+
7
+ SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
8
+ LANGUAGE_DIR = os.path.join(os.path.dirname(SCRIPT_DIR), "lang")
9
+ LANGUAGE_LOOKUP = {}
10
+ TARGET_LANGUAGE = settings.FALLBACK_LANGUAGE
11
+
12
+
13
+ def load_local_state():
14
+ """
15
+ Loads the local language settings and populates the LANGUAGE_LOOKUP dictionary with the appropriate translations.
16
+ This function performs the following steps:
17
+ """
18
+ global LANGUAGE_LOOKUP
19
+ global TARGET_LANGUAGE
20
+
21
+ settings.ensure_settings_file()
22
+
23
+ try:
24
+ with open(settings.GUI_SETTINGS_PATH, encoding="utf-8") as f:
25
+ settings_data = json.load(f)
26
+
27
+ if "language-id" in settings_data:
28
+ TARGET_LANGUAGE = settings_data["language-id"]
29
+ except FileNotFoundError:
30
+ print(f"gui-settings.json not found. Using fallback language {settings.FALLBACK_LANGUAGE}.")
31
+
32
+ try:
33
+ with open(f"{LANGUAGE_DIR}/{TARGET_LANGUAGE}.json", encoding="utf-8") as f:
34
+ LANGUAGE_LOOKUP = json.load(f)
35
+ except FileNotFoundError:
36
+ print(
37
+ f"Language file for {TARGET_LANGUAGE} not found in {LANGUAGE_DIR}."
38
+ + "Using fallback language {settings.FALLBACK_LANGUAGE}."
39
+ )
40
+
41
+ if TARGET_LANGUAGE != settings.FALLBACK_LANGUAGE:
42
+ with open(f"{LANGUAGE_DIR}/{settings.FALLBACK_LANGUAGE}.json") as f:
43
+ fallback: dict = json.load(f)
44
+
45
+ for key, value in fallback.items():
46
+ if key not in LANGUAGE_LOOKUP:
47
+ LANGUAGE_LOOKUP[key] = value
48
+
49
+
50
+ def localize(key: str) -> str:
51
+ """
52
+ Translates a given key into its corresponding localized string.
53
+
54
+ Args:
55
+ key (str): The key to be localized.
56
+
57
+ Returns:
58
+ str: The localized string corresponding to the given key.
59
+ If the key is not found in the localization lookup, the original key is returned.
60
+ """
61
+ return LANGUAGE_LOOKUP.get(key, key)
62
+
63
+
64
+ def set_language(language: str):
65
+ """
66
+ Sets the language for the application by updating the GUI settings file.
67
+ This function ensures that the settings file exists, reads the current settings,
68
+ updates the "language-id" field with the provided language, and writes the updated
69
+ settings back to the file.
70
+
71
+ Args:
72
+ language (str): The language identifier to set in the settings file.
73
+ """
74
+ if language:
75
+ settings.set_setting("language-id", language)