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,335 +1,335 @@
1
- {
2
- "analyze-locale-dropdown-info": "Segh pongmey Hol qel pong.",
3
- "analyze-locale-dropdown-label": "yuQ",
4
- "analyze-start-button-label": "poj yItagh",
5
- "embedding-settings-accordion-label": "qel chut mutlh",
6
- "embedding-settings-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. Qo' veb choHmey DabaqlaH.",
7
- "embedding-settings-audio-speed-slider-label": "Qo' veb choH",
8
- "embedding-settings-batchsize-number-info": "chu' law' wavmey.",
9
- "embedding-settings-batchsize-number-label": "batch qechmey",
10
- "embedding-settings-fmax-number-info": "qaStaHvIS qeq tInmoH.",
11
- "embedding-settings-fmax-number-label": "bav qa' nIv (Hz)",
12
- "embedding-settings-fmin-number-info": "bav qa' tlhe' bISovchu'.",
13
- "embedding-settings-fmin-number-label": "bav qa' tInchoH pIH (Hz)",
14
- "embedding-settings-overlap-slider-info": "wavmey qeq taS ngeD.",
15
- "embedding-settings-overlap-slider-label": "taS ngeD (s)",
16
- "embedding-settings-threads-number-info": "cpu Qapmey lo'.",
17
- "embedding-settings-threads-number-label": "cpu Qap",
18
- "embeddings-db-already-exists-info": "De' chu'wI' tu'lu'pu'. De' chu'wI' chutDaq tetlh tIq je chuq poH ngoq lo'.",
19
- "embeddings-db-dir-validation-message": "Daq Dabaq yIwIv",
20
- "embeddings-db-name-validation-message": "Dabaq pong yIchoH",
21
- "embeddings-extract-tab-title": "Suq",
22
- "embeddings-input-dir-validation-message": "wav Daq yIwIv",
23
- "embeddings-search-crop-mode-radio-info": "wav qeqmey chu'.",
24
- "embeddings-search-crop-overlap-number-info": "wavmey qeq taS ngeD.",
25
- "embeddings-search-crop-overlap-number-label": "qeq taS ngeD (s)",
26
- "embeddings-search-db-audio-speed-number-label": "Qo' veb",
27
- "embeddings-search-db-bandpass-frequencies-label": "qa' nIvmey",
28
- "embeddings-search-db-embedding-count-number-label": "Dabaq qelmey",
29
- "embeddings-search-db-selection-button-label": "Dabaq yIwIv",
30
- "embeddings-search-db-selection-error": "De' chu'wI' vItu'laHbe'. De' chu'wI' ngaSbogh directory wIv yIneH.",
31
- "embeddings-search-db-selection-textbox-label": "Dabaq",
32
- "embeddings-search-db-validation-message": "Dabaq yIwIv",
33
- "embeddings-search-export-button-label": "wavmey chu'",
34
- "embeddings-search-export-finish-info": "wavmey chu' pol:",
35
- "embeddings-search-export-no-results-info": "wavmey yIwIvHa'",
36
- "embeddings-search-max-samples-number-label": "law' wavmey",
37
- "embeddings-search-max-samples-validation-message": "law' wavmey yIchoH",
38
- "embeddings-search-query-sample-textbox-label": "wav qel",
39
- "embeddings-search-query-validation-message": "wav qel yIwIv",
40
- "embeddings-search-score-fn-select-label": "qel patlh",
41
- "embeddings-search-select-query-button-label": "wav qel yIwIv",
42
- "embeddings-search-start-button-label": "qel yItagh",
43
- "embeddings-search-tab-title": "qel",
44
- "embeddings-tab-dataset-info": "De' pong yIchoH",
45
- "embeddings-tab-dataset-label": "De'",
46
- "embeddings-tab-db-info": "Dabaq pong",
47
- "embeddings-tab-finish-info": "qelmey pol:",
48
- "embeddings-tab-select-db-directory-button-label": "Dabaq Daq yIwIv",
49
- "embeddings-tab-select-input-directory-button-label": "wav Daq yIwIv (rap)",
50
- "embeddings-tab-start-button-label": "qelmey yInob",
51
- "embeddings-tab-title": "qelmey",
52
- "eval-tab-accuracy-checkbox-info": "qel patlh vIt.",
53
- "eval-tab-annotation-col-accordion-label": "QInmey",
54
- "eval-tab-annotation-selection-button-label": "QIn Daq yIwIv",
55
- "eval-tab-ap-checkbox-info": "qel patlh vIt.",
56
- "eval-tab-auroc-checkbox-info": "qel patlh vIt.",
57
- "eval-tab-calculate-metrics-button-label": "qelmey yInob",
58
- "eval-tab-class-mapping-accordion-label": "Segh map",
59
- "eval-tab-classwise-checkbox-info": "Segh Dar qelmey.",
60
- "eval-tab-classwise-checkbox-label": "Segh Dar qelmey",
61
- "eval-tab-column-class-label": "Segh",
62
- "eval-tab-column-confidence-label": "vIt",
63
- "eval-tab-column-duration-label": "tup",
64
- "eval-tab-column-end-time-label": "Dor (s)",
65
- "eval-tab-column-recording-label": "wav",
66
- "eval-tab-column-start-time-label": "Tagh (s)",
67
- "eval-tab-data-table-download-button-label": "De' wav yInob",
68
- "eval-tab-error-calc-metrics-first": "qelmey yInob qaH",
69
- "eval-tab-error-during-processing": "QapHa'",
70
- "eval-tab-error-init-processor": "QapHa'",
71
- "eval-tab-error-missing-col": "QIn tu'Ha'",
72
- "eval-tab-error-missing-col-info": "QIn pongmey yIqel",
73
- "eval-tab-error-no-class-selected": "Segh yIwIv",
74
- "eval-tab-error-no-valid-recording-duration": "wav tup yIchoH",
75
- "eval-tab-error-plotting-confusion-matrix": "QapHa'",
76
- "eval-tab-error-plotting-metrics": "QapHa'",
77
- "eval-tab-error-plotting-metrics-all-thresholds": "QapHa'",
78
- "eval-tab-error-saving-data-table": "QapHa'",
79
- "eval-tab-error-saving-mapping-template": "QapHa'",
80
- "eval-tab-error-saving-results-table": "QapHa'",
81
- "eval-tab-f1-checkbox-info": "qel patlh vIt.",
82
- "eval-tab-info-data-table-saved": "De' wav pol!",
83
- "eval-tab-info-mapping-template-saved": "map wav pol!",
84
- "eval-tab-info-results-table-saved": "qelmey pol!",
85
- "eval-tab-mapping-file-template-download-button-label": "wav yInob",
86
- "eval-tab-metrics-accordian-label": "qelmey wIv",
87
- "eval-tab-min-overlap-number-info": "wavmey qeq taS ngeD.",
88
- "eval-tab-min-overlap-number-label": "quS taS ngeD (s)",
89
- "eval-tab-no-files-found": "wavmey tu'Ha'",
90
- "eval-tab-parameters-accordion-label": "chutmey",
91
- "eval-tab-plot-confusion-matrix-button-label": "qel vItlh",
92
- "eval-tab-plot-metrics-all-thresholds-button-label": "Hoch qelmey vItlh",
93
- "eval-tab-plot-metrics-button-label": "qelmey vItlh",
94
- "eval-tab-precision-checkbox-info": "qel patlh vIt.",
95
- "eval-tab-prediction-col-accordion-label": "Qelmey",
96
- "eval-tab-prediction-selection-button-label": "Qel Daq yIwIv",
97
- "eval-tab-recall-checkbox-info": "qel patlh vIt.",
98
- "eval-tab-recording-duration-textbox-info": "wav tup.",
99
- "eval-tab-recording-duration-textbox-label": "wav tup (s)",
100
- "eval-tab-recording-duration-textbox-placeholder": "wavmey qel",
101
- "eval-tab-result-table-download-button-label": "qelmey yInob",
102
- "eval-tab-sample-duration-number-info": "wav tup.",
103
- "eval-tab-sample-duration-number-label": "wav tup (s)",
104
- "eval-tab-select-classes-checkboxgroup-info": "Seghmey wIv.",
105
- "eval-tab-select-classes-checkboxgroup-label": "Seghmey wIv",
106
- "eval-tab-select-classes-recordings-accordion-label": "Seghmey je wavmey wIv",
107
- "eval-tab-select-recordings-checkboxgroup-info": "wavmey wIv.",
108
- "eval-tab-select-recordings-checkboxgroup-label": "wavmey wIv",
109
- "eval-tab-selections-column-file-header": "wav",
110
- "eval-tab-threshold-number-info": "qel patlh.",
111
- "eval-tab-threshold-number-label": "patlh",
112
- "eval-tab-title": "qel",
113
- "eval-tab-upload-mapping-file-label": "map wav yIchel",
114
- "eval-tab-warning-error-reading-file": "wav qelHa'",
115
- "footer-help": "qaSmo' chutmey chu' yIchoH 'e' QaH",
116
- "inference-settings-accordion-label": "poj chut mutlh",
117
- "inference-settings-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. yIvoqQo' Qo' veb lo' 'e' DaHutlh 'ej Qapla' 'e' Datu' 'e' yIlo'.",
118
- "inference-settings-audio-speed-slider-label": "Qo' veb",
119
- "inference-settings-confidence-slider-info": "qel ghochHa'moH qochHa'bogh Dochmey.",
120
- "inference-settings-confidence-slider-label": "minimum vIt",
121
- "inference-settings-fmax-number-info": "qaStaHvIS qeq tInmoH.",
122
- "inference-settings-fmax-number-label": "bav qa' nIv (Hz)",
123
- "inference-settings-fmin-number-info": "bav qa' tlhe' bISovchu'.",
124
- "inference-settings-fmin-number-label": "bav qa' tInchoH pIH (Hz)",
125
- "inference-settings-merge-consecutive-slider-info": "Seghmey rap rarbogh wavmey mI'. N wavmey rap rar.",
126
- "inference-settings-merge-consecutive-slider-label": "wavmey rap rar",
127
- "inference-settings-overlap-slider-info": "BirdNET 3 tup langmey lo'law'.",
128
- "inference-settings-overlap-slider-label": "taS ngeD (s)",
129
- "inference-settings-sensitivity-slider-info": "qel tInmoH Dochmey patlh.",
130
- "inference-settings-sensitivity-slider-label": "nachHa'ghach",
131
- "inference-settings-top-n-number-info": "povmeH ghogh 'oghbe'.",
132
- "inference-settings-top-n-number-label": "N top Segh",
133
- "inference-settings-use-top-n-checkbox-info": "povmeH mI' lISbogh N top Segh wIv.",
134
- "inference-settings-use-top-n-checkbox-label": "N top Segh yIlo'",
135
- "multi-tab-batchsize-number-info": "wavmey chu'law'.",
136
- "multi-tab-batchsize-number-label": "batch qechmey",
137
- "multi-tab-input-selection-button-label": "wav Segh lo'",
138
- "multi-tab-output-accordion-label": "ngeH chut mutlh",
139
- "multi-tab-output-combine-tables-checkbox-info": "chu' law'law'.",
140
- "multi-tab-output-combine-tables-checkbox-label": "wav chu'law'",
141
- "multi-tab-output-combined-table-name-textbox-info": "wav chu' pongmey.",
142
- "multi-tab-output-combined-table-name-textbox-label": "chu' wav pong",
143
- "multi-tab-output-radio-info": "wav ngeH tu' qel.",
144
- "multi-tab-output-radio-label": "ngeH tu'",
145
- "multi-tab-output-selection-button-label": "wav Segh lo'",
146
- "multi-tab-output-textbox-label": "wav Segh",
147
- "multi-tab-output-textbox-placeholder": "chutmey lo'Ha'.",
148
- "multi-tab-result-dataframe-column-execution-header": "Qap",
149
- "multi-tab-result-dataframe-column-file-header": "wav",
150
- "multi-tab-samples-dataframe-column-duration-header": "tup",
151
- "multi-tab-samples-dataframe-column-subpath-header": "wavmey",
152
- "multi-tab-samples-dataframe-no-files-found": "wavmey tu'Ha'",
153
- "multi-tab-skip-existing-checkbox-info": "wavmey qochHa'law'.",
154
- "multi-tab-skip-existing-checkbox-label": "wavmey lo'",
155
- "multi-tab-threads-number-info": "cpu Qapmey.",
156
- "multi-tab-threads-number-label": "cpu Qap",
157
- "multi-tab-title": "law' poj",
158
- "progress-autotune": "autotune Qap",
159
- "progress-build-classifier": "De' poQ & tu'law' rurbogh",
160
- "progress-loading-data": "De' poQ",
161
- "progress-preparing": "rInwI' ghu'",
162
- "progress-saving": "pol",
163
- "progress-search": "wavmey qel",
164
- "progress-starting": "tagh",
165
- "progress-training": "qeq",
166
- "review-tab-autoplay-checkbox-label": "chu'Ha'laH",
167
- "review-tab-file-matrix-neg-header": "lu'Ha'",
168
- "review-tab-file-matrix-pos-header": "lu'",
169
- "review-tab-file-matrix-todo-header": "Qu'",
170
- "review-tab-input-directory-button-label": "wav Daq wIv",
171
- "review-tab-neg-button-label": "lu'Ha'",
172
- "review-tab-no-files-error": "latlh navmey lutu'lu'be' laDnISbogh.",
173
- "review-tab-no-files-label": "wavmey tu'Ha'",
174
- "review-tab-no-species-found-error": "wav Daq Seghmey tu'Ha'.",
175
- "review-tab-pos-button-label": "lu'",
176
- "review-tab-regression-plot-label": "vumwI' qel",
177
- "review-tab-regression-plot-x-label": "vIt",
178
- "review-tab-regression-plot-y-label-false": "ghItlhHa'",
179
- "review-tab-regression-plot-y-label-true": "ghItlh",
180
- "review-tab-segment-matrix-count-header": "ghu' lup",
181
- "review-tab-skip-button-label": "DIng",
182
- "review-tab-species-dropdown-label": "Seghmey",
183
- "review-tab-spectrogram-plot-label": "wav taQ",
184
- "review-tab-start-button-label": "Del yItagh",
185
- "review-tab-title": "Del",
186
- "review-tab-undo-button-label": "choHqa'",
187
- "segments-tab-extract-button-label": "wavmey Suq",
188
- "segments-tab-max-seq-number-info": "nIvbogh wavmey chu'wI' Segh.",
189
- "segments-tab-max-seq-number-label": "nIvbogh wavmey",
190
- "segments-tab-min-confidence-slider-info": "wavmey lo' vIt patlh SeH.",
191
- "segments-tab-min-confidence-slider-label": "minimum vIt",
192
- "segments-tab-output-selection-button-label": "wavmey chu'",
193
- "segments-tab-output-selection-textbox-placeholder": "De' wav Daq rap lo'laH",
194
- "segments-tab-result-dataframe-column-execution-header": "Qap",
195
- "segments-tab-result-dataframe-column-file-header": "wav",
196
- "segments-tab-results-input-textbox-placeholder": "wavmey chu'law'.",
197
- "segments-tab-select-audio-input-directory-button-label": "wavwavmey",
198
- "segments-tab-select-results-input-directory-button-label": "wavmey chu'",
199
- "segments-tab-seq-length-number-info": "wav chu'wI' tup lang.",
200
- "segments-tab-seq-length-number-label": "wav tup (s)",
201
- "segments-tab-threads-number-info": "cpu Qapmey.",
202
- "segments-tab-threads-number-label": "cpu Qap",
203
- "segments-tab-title": "wavmey",
204
- "settings-tab-error-log-textbox-info-path": "He",
205
- "settings-tab-error-log-textbox-label": "QapHa' log wav",
206
- "settings-tab-error-log-textbox-placeholder": "yInIDHa'",
207
- "settings-tab-language-dropdown-info": "chutmey chu' yIchoH 'ach chut qaStaHvIS yItagh.",
208
- "settings-tab-language-dropdown-label": "Hol lo'",
209
- "settings-tab-theme-dropdown-dark-option": "Hurgh",
210
- "settings-tab-theme-dropdown-info": "Qapla'! chut choH qaStaHvIS QapHa'laH.",
211
- "settings-tab-theme-dropdown-label": "chut",
212
- "settings-tab-theme-dropdown-light-option": "wov",
213
- "settings-tab-title": "chut mutlh",
214
- "single-audio-label": "De' wav",
215
- "single-tab-analyze-file-error": "wav pojlaHbe'",
216
- "single-tab-download-button-label": "nIqHom laHmey",
217
- "single-tab-generate-spectrogram-error": "wav taQ chenmoHlaHbe'",
218
- "single-tab-output-header-common-name": "motlh pong",
219
- "single-tab-output-header-confidence": "vIt (qel)",
220
- "single-tab-output-header-end": "Dor (s)",
221
- "single-tab-output-header-sci-name": "Hol qonwI' pong",
222
- "single-tab-output-header-start": "Tagh (s)",
223
- "single-tab-spectrogram-checkbox-info": "wavmey tInmo' QapHa'laH.",
224
- "single-tab-spectrogram-checkbox-label": "nuvmey vItlhutlh",
225
- "single-tab-title": "wa' poj",
226
- "species-list-accordion-label": "Segh wIv",
227
- "species-list-coordinates-lat-number-info": "wav chellu' le' yotlh.",
228
- "species-list-coordinates-lat-number-label": "Daq (lang)",
229
- "species-list-coordinates-lon-number-info": "Daq logh.",
230
- "species-list-coordinates-lon-number-label": "Daq (tugh)",
231
- "species-list-coordinates-threshold-slider-info": "qel motlh qochHa'moH.",
232
- "species-list-coordinates-threshold-slider-label": "minimum Daq qelbe'",
233
- "species-list-coordinates-week-slider-info": "pIH lang Segh chu' Hogh 1-48.",
234
- "species-list-coordinates-week-slider-label": "Hogh",
235
- "species-list-coordinates-yearlong-checkbox-label": "DIS",
236
- "species-list-custom-classifier-selection-button-label": "wIv tu'law'",
237
- "species-list-custom-list-file-label": "wav",
238
- "species-list-radio-info": "wav Seghmey chu'.",
239
- "species-list-radio-label": "Segh wIv",
240
- "species-list-radio-option-all": "Hoch Seghmey",
241
- "species-list-radio-option-custom-classifier": "chu' tu'law'",
242
- "species-list-radio-option-custom-list": "chu' Seghmey",
243
- "species-list-radio-option-predict-list": "Segh Daqmey",
244
- "species-tab-filename-textbox-label": "wav pong, 'species_list.txt' lo'laH",
245
- "species-tab-finish-info": "Seghmey wav tu'lu'law'",
246
- "species-tab-select-output-directory-button-label": "wav Daq wIv",
247
- "species-tab-sort-radio-info": "rarmeH Seghmey vIghro' qel pagh Hol pong.",
248
- "species-tab-sort-radio-label": "rarmeH",
249
- "species-tab-sort-radio-option-alphabetically": "Hol pong",
250
- "species-tab-sort-radio-option-frequency": "vIghro'",
251
- "species-tab-start-button-label": "Seghmey wav yInob",
252
- "species-tab-title": "Seghmey",
253
- "training-tab-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. -10 = 10logh veb, 10 = 10logh veb. 1.0 = pagh choH.",
254
- "training-tab-audio-speed-slider-label": "Qo' veb",
255
- "training-tab-autotune-checkbox-info": "vIghro' qechmey chu'.",
256
- "training-tab-autotune-checkbox-label": "qeq yIchoH",
257
- "training-tab-autotune-executions-number-info": "Qapmey chu' Seghmey.",
258
- "training-tab-autotune-executions-number-label": "qeq Qapmey chu'",
259
- "training-tab-autotune-trials-number-info": "wa' Qapmey chu'.",
260
- "training-tab-autotune-trials-number-label": "qeq Qapmey",
261
- "training-tab-batchsize-number-info": "qeq qechmey chu'.",
262
- "training-tab-batchsize-number-label": "batch qechmey",
263
- "training-tab-cache-file-name-textbox-info": "wav pongmey.",
264
- "training-tab-cache-mode-radio-info": "wav cachmey.",
265
- "training-tab-cache-mode-radio-label": "mode cachmey",
266
- "training-tab-cache-mode-radio-option-load": "wav",
267
- "training-tab-cache-mode-radio-option-none": "tugh",
268
- "training-tab-cache-mode-radio-option-save": "wavmey",
269
- "training-tab-cache-select-directory-button-label": "wav cachmey",
270
- "training-tab-cache-select-file-button-label": "wav cachmey",
271
- "training-tab-classes-dataframe-column-classes-header": "Seghmey",
272
- "training-tab-classifier-textbox-info": "tu'law' pongmey chu'.",
273
- "training-tab-crop-mode-radio-info": "wav qeqmey chu'.",
274
- "training-tab-crop-mode-radio-label": "mode qeqmey",
275
- "training-tab-crop-mode-radio-option-center": "SochHa'",
276
- "training-tab-crop-mode-radio-option-first": "tagh",
277
- "training-tab-crop-mode-radio-option-segments": "wavmey",
278
- "training-tab-crop-mode-radio-option-smart": "qeqmey",
279
- "training-tab-crop-overlap-number-info": "chu'law'.",
280
- "training-tab-crop-overlap-number-label": "wavmey qeq",
281
- "training-tab-dropout-number-info": "patlhmey nIvqu' qeqHa'moHlaH 'ach qeq QatlhmoHlaH.",
282
- "training-tab-dropout-number-label": "Dropout patlh",
283
- "training-tab-early-stoppage-msg": "qeqHa'laH.",
284
- "training-tab-epochs-number-info": "qeq epQochmey chu'.",
285
- "training-tab-epochs-number-label": "epQochmey",
286
- "training-tab-focal-loss-alpha-slider-info": "qeq alpha cher. patlhmey nIvqu' qeq QaQmoH (0.25).",
287
- "training-tab-focal-loss-alpha-slider-label": "focal loss alpha",
288
- "training-tab-focal-loss-gamma-slider-info": "qeq gamma cher. patlhmey nIvqu' qeq QatlhmoH (2.0).",
289
- "training-tab-focal-loss-gamma-slider-label": "focal loss gamma",
290
- "training-tab-hiddenunits-number-info": "wa' loQ.",
291
- "training-tab-hiddenunits-number-label": "Sochmey Seghmey",
292
- "training-tab-input-selection-button-label": "wav qeq",
293
- "training-tab-learningrate-number-info": "chu' qechmey.",
294
- "training-tab-learningrate-number-label": "ghel Seghmey",
295
- "training-tab-model-save-mode-radio-info": "chu'law' Seghmey.",
296
- "training-tab-model-save-mode-radio-label": "mode qeq",
297
- "training-tab-model-save-mode-radio-option-append": "wa'lo'",
298
- "training-tab-model-save-mode-radio-option-replace": "choH",
299
- "training-tab-output-format-both": "cha'",
300
- "training-tab-output-format-radio-info": "Hol chu' qel.",
301
- "training-tab-output-format-radio-label": "tu'law' Hol",
302
- "training-tab-select-output-button-label": "tu'law' wav",
303
- "training-tab-start-training-button-label": "qeq yItagh",
304
- "training-tab-test-data-selection-button-label": "wav qeq (rap)",
305
- "training-tab-title": "qeq",
306
- "training-tab-upsampling-radio-info": "Seghmey qochHa'.",
307
- "training-tab-upsampling-radio-label": "qechmey choH",
308
- "training-tab-upsampling-radio-option-linear": "ghunHa' linear",
309
- "training-tab-upsampling-radio-option-mean": "qechmey 'uch",
310
- "training-tab-upsampling-radio-option-repeat": "qechmey ghun",
311
- "training-tab-upsampling-ratio-slider-info": "chu' ratio Seghmey.",
312
- "training-tab-upsampling-ratio-slider-label": "qochHa' ratio",
313
- "training-tab-use-focal-loss-checkbox-info": "qeq focal loss lo'. qeq QatlhmoH 'ej qeq laH QaQmoH.",
314
- "training-tab-use-focal-loss-checkbox-label": "focal loss lo'",
315
- "training-tab-use-labelsmoothing-checkbox-info": "qeq label smoothing lo'. qeq laH QaQmoH 'ej qeq laH QatlhmoH.",
316
- "training-tab-use-labelsmoothing-checkbox-label": "label smoothing lo'",
317
- "training-tab-use-mixup-checkbox-info": "nuvHa'choHmoH lo'law' qeq qechmey chu'.",
318
- "training-tab-use-mixup-checkbox-label": "nuvHa'choHmoH lo'",
319
- "validation-no-audio-directory-selected": "wav Daq tu'Ha'.",
320
- "validation-no-audio-files-found": "wavmey chu'Ha'.",
321
- "validation-no-custom-classifier-selected": "chu' tu'law' yIwIvHa'.",
322
- "validation-no-directory-for-classifier-selected": "tu'law' Daq yIwIv.",
323
- "validation-no-directory-selected": "Daq yIwIv.",
324
- "validation-no-file-selected": "wav yIwIv.",
325
- "validation-no-negative-samples-in-binary-classification": "lu'Ha' Seghmey binary qel lo'laHbe'.",
326
- "validation-no-species-list-selected": "Seghmey wav yIwIv.",
327
- "validation-no-training-data-selected": "qeq De' yIwIv.",
328
- "validation-no-valid-batch-size": "batch chu' yIchoH.",
329
- "validation-no-valid-classifier-name": "tu'law' pong yIchoH.",
330
- "validation-no-valid-epoch-number": "epQochmey yIchoH.",
331
- "validation-no-valid-frequency": "qeq 'eS patlh yIchoH",
332
- "validation-no-valid-learning-rate": "qeq patlh yIchoH.",
333
- "validation-non-event-samples-required-in-binary-classification": "binary qeq 'eS Seghmey lo'laH.",
334
- "validation-only-repeat-upsampling-for-multi-label": "wa'logh qochHa' Seghmey multi-label lo'laH."
1
+ {
2
+ "analyze-locale-dropdown-info": "Segh pongmey Hol qel pong.",
3
+ "analyze-locale-dropdown-label": "yuQ",
4
+ "analyze-start-button-label": "poj yItagh",
5
+ "embedding-settings-accordion-label": "qel chut mutlh",
6
+ "embedding-settings-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. Qo' veb choHmey DabaqlaH.",
7
+ "embedding-settings-audio-speed-slider-label": "Qo' veb choH",
8
+ "embedding-settings-batchsize-number-info": "chu' law' wavmey.",
9
+ "embedding-settings-batchsize-number-label": "batch qechmey",
10
+ "embedding-settings-fmax-number-info": "qaStaHvIS qeq tInmoH.",
11
+ "embedding-settings-fmax-number-label": "bav qa' nIv (Hz)",
12
+ "embedding-settings-fmin-number-info": "bav qa' tlhe' bISovchu'.",
13
+ "embedding-settings-fmin-number-label": "bav qa' tInchoH pIH (Hz)",
14
+ "embedding-settings-overlap-slider-info": "wavmey qeq taS ngeD.",
15
+ "embedding-settings-overlap-slider-label": "taS ngeD (s)",
16
+ "embedding-settings-threads-number-info": "cpu Qapmey lo'.",
17
+ "embedding-settings-threads-number-label": "cpu Qap",
18
+ "embeddings-db-already-exists-info": "De' chu'wI' tu'lu'pu'. De' chu'wI' chutDaq tetlh tIq je chuq poH ngoq lo'.",
19
+ "embeddings-db-dir-validation-message": "Daq Dabaq yIwIv",
20
+ "embeddings-db-name-validation-message": "Dabaq pong yIchoH",
21
+ "embeddings-extract-tab-title": "Suq",
22
+ "embeddings-input-dir-validation-message": "wav Daq yIwIv",
23
+ "embeddings-search-crop-mode-radio-info": "wav qeqmey chu'.",
24
+ "embeddings-search-crop-overlap-number-info": "wavmey qeq taS ngeD.",
25
+ "embeddings-search-crop-overlap-number-label": "qeq taS ngeD (s)",
26
+ "embeddings-search-db-audio-speed-number-label": "Qo' veb",
27
+ "embeddings-search-db-bandpass-frequencies-label": "qa' nIvmey",
28
+ "embeddings-search-db-embedding-count-number-label": "Dabaq qelmey",
29
+ "embeddings-search-db-selection-button-label": "Dabaq yIwIv",
30
+ "embeddings-search-db-selection-error": "De' chu'wI' vItu'laHbe'. De' chu'wI' ngaSbogh directory wIv yIneH.",
31
+ "embeddings-search-db-selection-textbox-label": "Dabaq",
32
+ "embeddings-search-db-validation-message": "Dabaq yIwIv",
33
+ "embeddings-search-export-button-label": "wavmey chu'",
34
+ "embeddings-search-export-finish-info": "wavmey chu' pol:",
35
+ "embeddings-search-export-no-results-info": "wavmey yIwIvHa'",
36
+ "embeddings-search-max-samples-number-label": "law' wavmey",
37
+ "embeddings-search-max-samples-validation-message": "law' wavmey yIchoH",
38
+ "embeddings-search-query-sample-textbox-label": "wav qel",
39
+ "embeddings-search-query-validation-message": "wav qel yIwIv",
40
+ "embeddings-search-score-fn-select-label": "qel patlh",
41
+ "embeddings-search-select-query-button-label": "wav qel yIwIv",
42
+ "embeddings-search-start-button-label": "qel yItagh",
43
+ "embeddings-search-tab-title": "qel",
44
+ "embeddings-tab-dataset-info": "De' pong yIchoH",
45
+ "embeddings-tab-dataset-label": "De'",
46
+ "embeddings-tab-db-info": "Dabaq pong",
47
+ "embeddings-tab-finish-info": "qelmey pol:",
48
+ "embeddings-tab-select-db-directory-button-label": "Dabaq Daq yIwIv",
49
+ "embeddings-tab-select-input-directory-button-label": "wav Daq yIwIv (rap)",
50
+ "embeddings-tab-start-button-label": "qelmey yInob",
51
+ "embeddings-tab-title": "qelmey",
52
+ "eval-tab-accuracy-checkbox-info": "qel patlh vIt.",
53
+ "eval-tab-annotation-col-accordion-label": "QInmey",
54
+ "eval-tab-annotation-selection-button-label": "QIn Daq yIwIv",
55
+ "eval-tab-ap-checkbox-info": "qel patlh vIt.",
56
+ "eval-tab-auroc-checkbox-info": "qel patlh vIt.",
57
+ "eval-tab-calculate-metrics-button-label": "qelmey yInob",
58
+ "eval-tab-class-mapping-accordion-label": "Segh map",
59
+ "eval-tab-classwise-checkbox-info": "Segh Dar qelmey.",
60
+ "eval-tab-classwise-checkbox-label": "Segh Dar qelmey",
61
+ "eval-tab-column-class-label": "Segh",
62
+ "eval-tab-column-confidence-label": "vIt",
63
+ "eval-tab-column-duration-label": "tup",
64
+ "eval-tab-column-end-time-label": "Dor (s)",
65
+ "eval-tab-column-recording-label": "wav",
66
+ "eval-tab-column-start-time-label": "Tagh (s)",
67
+ "eval-tab-data-table-download-button-label": "De' wav yInob",
68
+ "eval-tab-error-calc-metrics-first": "qelmey yInob qaH",
69
+ "eval-tab-error-during-processing": "QapHa'",
70
+ "eval-tab-error-init-processor": "QapHa'",
71
+ "eval-tab-error-missing-col": "QIn tu'Ha'",
72
+ "eval-tab-error-missing-col-info": "QIn pongmey yIqel",
73
+ "eval-tab-error-no-class-selected": "Segh yIwIv",
74
+ "eval-tab-error-no-valid-recording-duration": "wav tup yIchoH",
75
+ "eval-tab-error-plotting-confusion-matrix": "QapHa'",
76
+ "eval-tab-error-plotting-metrics": "QapHa'",
77
+ "eval-tab-error-plotting-metrics-all-thresholds": "QapHa'",
78
+ "eval-tab-error-saving-data-table": "QapHa'",
79
+ "eval-tab-error-saving-mapping-template": "QapHa'",
80
+ "eval-tab-error-saving-results-table": "QapHa'",
81
+ "eval-tab-f1-checkbox-info": "qel patlh vIt.",
82
+ "eval-tab-info-data-table-saved": "De' wav pol!",
83
+ "eval-tab-info-mapping-template-saved": "map wav pol!",
84
+ "eval-tab-info-results-table-saved": "qelmey pol!",
85
+ "eval-tab-mapping-file-template-download-button-label": "wav yInob",
86
+ "eval-tab-metrics-accordian-label": "qelmey wIv",
87
+ "eval-tab-min-overlap-number-info": "wavmey qeq taS ngeD.",
88
+ "eval-tab-min-overlap-number-label": "quS taS ngeD (s)",
89
+ "eval-tab-no-files-found": "wavmey tu'Ha'",
90
+ "eval-tab-parameters-accordion-label": "chutmey",
91
+ "eval-tab-plot-confusion-matrix-button-label": "qel vItlh",
92
+ "eval-tab-plot-metrics-all-thresholds-button-label": "Hoch qelmey vItlh",
93
+ "eval-tab-plot-metrics-button-label": "qelmey vItlh",
94
+ "eval-tab-precision-checkbox-info": "qel patlh vIt.",
95
+ "eval-tab-prediction-col-accordion-label": "Qelmey",
96
+ "eval-tab-prediction-selection-button-label": "Qel Daq yIwIv",
97
+ "eval-tab-recall-checkbox-info": "qel patlh vIt.",
98
+ "eval-tab-recording-duration-textbox-info": "wav tup.",
99
+ "eval-tab-recording-duration-textbox-label": "wav tup (s)",
100
+ "eval-tab-recording-duration-textbox-placeholder": "wavmey qel",
101
+ "eval-tab-result-table-download-button-label": "qelmey yInob",
102
+ "eval-tab-sample-duration-number-info": "wav tup.",
103
+ "eval-tab-sample-duration-number-label": "wav tup (s)",
104
+ "eval-tab-select-classes-checkboxgroup-info": "Seghmey wIv.",
105
+ "eval-tab-select-classes-checkboxgroup-label": "Seghmey wIv",
106
+ "eval-tab-select-classes-recordings-accordion-label": "Seghmey je wavmey wIv",
107
+ "eval-tab-select-recordings-checkboxgroup-info": "wavmey wIv.",
108
+ "eval-tab-select-recordings-checkboxgroup-label": "wavmey wIv",
109
+ "eval-tab-selections-column-file-header": "wav",
110
+ "eval-tab-threshold-number-info": "qel patlh.",
111
+ "eval-tab-threshold-number-label": "patlh",
112
+ "eval-tab-title": "qel",
113
+ "eval-tab-upload-mapping-file-label": "map wav yIchel",
114
+ "eval-tab-warning-error-reading-file": "wav qelHa'",
115
+ "footer-help": "qaSmo' chutmey chu' yIchoH 'e' QaH",
116
+ "inference-settings-accordion-label": "poj chut mutlh",
117
+ "inference-settings-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. yIvoqQo' Qo' veb lo' 'e' DaHutlh 'ej Qapla' 'e' Datu' 'e' yIlo'.",
118
+ "inference-settings-audio-speed-slider-label": "Qo' veb",
119
+ "inference-settings-confidence-slider-info": "qel ghochHa'moH qochHa'bogh Dochmey.",
120
+ "inference-settings-confidence-slider-label": "minimum vIt",
121
+ "inference-settings-fmax-number-info": "qaStaHvIS qeq tInmoH.",
122
+ "inference-settings-fmax-number-label": "bav qa' nIv (Hz)",
123
+ "inference-settings-fmin-number-info": "bav qa' tlhe' bISovchu'.",
124
+ "inference-settings-fmin-number-label": "bav qa' tInchoH pIH (Hz)",
125
+ "inference-settings-merge-consecutive-slider-info": "Seghmey rap rarbogh wavmey mI'. N wavmey rap rar.",
126
+ "inference-settings-merge-consecutive-slider-label": "wavmey rap rar",
127
+ "inference-settings-overlap-slider-info": "BirdNET 3 tup langmey lo'law'.",
128
+ "inference-settings-overlap-slider-label": "taS ngeD (s)",
129
+ "inference-settings-sensitivity-slider-info": "qel tInmoH Dochmey patlh.",
130
+ "inference-settings-sensitivity-slider-label": "nachHa'ghach",
131
+ "inference-settings-top-n-number-info": "povmeH ghogh 'oghbe'.",
132
+ "inference-settings-top-n-number-label": "N top Segh",
133
+ "inference-settings-use-top-n-checkbox-info": "povmeH mI' lISbogh N top Segh wIv.",
134
+ "inference-settings-use-top-n-checkbox-label": "N top Segh yIlo'",
135
+ "multi-tab-batchsize-number-info": "wavmey chu'law'.",
136
+ "multi-tab-batchsize-number-label": "batch qechmey",
137
+ "multi-tab-input-selection-button-label": "wav Segh lo'",
138
+ "multi-tab-output-accordion-label": "ngeH chut mutlh",
139
+ "multi-tab-output-combine-tables-checkbox-info": "chu' law'law'.",
140
+ "multi-tab-output-combine-tables-checkbox-label": "wav chu'law'",
141
+ "multi-tab-output-combined-table-name-textbox-info": "wav chu' pongmey.",
142
+ "multi-tab-output-combined-table-name-textbox-label": "chu' wav pong",
143
+ "multi-tab-output-radio-info": "wav ngeH tu' qel.",
144
+ "multi-tab-output-radio-label": "ngeH tu'",
145
+ "multi-tab-output-selection-button-label": "wav Segh lo'",
146
+ "multi-tab-output-textbox-label": "wav Segh",
147
+ "multi-tab-output-textbox-placeholder": "chutmey lo'Ha'.",
148
+ "multi-tab-result-dataframe-column-execution-header": "Qap",
149
+ "multi-tab-result-dataframe-column-file-header": "wav",
150
+ "multi-tab-samples-dataframe-column-duration-header": "tup",
151
+ "multi-tab-samples-dataframe-column-subpath-header": "wavmey",
152
+ "multi-tab-samples-dataframe-no-files-found": "wavmey tu'Ha'",
153
+ "multi-tab-skip-existing-checkbox-info": "wavmey qochHa'law'.",
154
+ "multi-tab-skip-existing-checkbox-label": "wavmey lo'",
155
+ "multi-tab-threads-number-info": "cpu Qapmey.",
156
+ "multi-tab-threads-number-label": "cpu Qap",
157
+ "multi-tab-title": "law' poj",
158
+ "progress-autotune": "autotune Qap",
159
+ "progress-build-classifier": "De' poQ & tu'law' rurbogh",
160
+ "progress-loading-data": "De' poQ",
161
+ "progress-preparing": "rInwI' ghu'",
162
+ "progress-saving": "pol",
163
+ "progress-search": "wavmey qel",
164
+ "progress-starting": "tagh",
165
+ "progress-training": "qeq",
166
+ "review-tab-autoplay-checkbox-label": "chu'Ha'laH",
167
+ "review-tab-file-matrix-neg-header": "lu'Ha'",
168
+ "review-tab-file-matrix-pos-header": "lu'",
169
+ "review-tab-file-matrix-todo-header": "Qu'",
170
+ "review-tab-input-directory-button-label": "wav Daq wIv",
171
+ "review-tab-neg-button-label": "lu'Ha'",
172
+ "review-tab-no-files-error": "latlh navmey lutu'lu'be' laDnISbogh.",
173
+ "review-tab-no-files-label": "wavmey tu'Ha'",
174
+ "review-tab-no-species-found-error": "wav Daq Seghmey tu'Ha'.",
175
+ "review-tab-pos-button-label": "lu'",
176
+ "review-tab-regression-plot-label": "vumwI' qel",
177
+ "review-tab-regression-plot-x-label": "vIt",
178
+ "review-tab-regression-plot-y-label-false": "ghItlhHa'",
179
+ "review-tab-regression-plot-y-label-true": "ghItlh",
180
+ "review-tab-segment-matrix-count-header": "ghu' lup",
181
+ "review-tab-skip-button-label": "DIng",
182
+ "review-tab-species-dropdown-label": "Seghmey",
183
+ "review-tab-spectrogram-plot-label": "wav taQ",
184
+ "review-tab-start-button-label": "Del yItagh",
185
+ "review-tab-title": "Del",
186
+ "review-tab-undo-button-label": "choHqa'",
187
+ "segments-tab-extract-button-label": "wavmey Suq",
188
+ "segments-tab-max-seq-number-info": "nIvbogh wavmey chu'wI' Segh.",
189
+ "segments-tab-max-seq-number-label": "nIvbogh wavmey",
190
+ "segments-tab-min-confidence-slider-info": "wavmey lo' vIt patlh SeH.",
191
+ "segments-tab-min-confidence-slider-label": "minimum vIt",
192
+ "segments-tab-output-selection-button-label": "wavmey chu'",
193
+ "segments-tab-output-selection-textbox-placeholder": "De' wav Daq rap lo'laH",
194
+ "segments-tab-result-dataframe-column-execution-header": "Qap",
195
+ "segments-tab-result-dataframe-column-file-header": "wav",
196
+ "segments-tab-results-input-textbox-placeholder": "wavmey chu'law'.",
197
+ "segments-tab-select-audio-input-directory-button-label": "wavwavmey",
198
+ "segments-tab-select-results-input-directory-button-label": "wavmey chu'",
199
+ "segments-tab-seq-length-number-info": "wav chu'wI' tup lang.",
200
+ "segments-tab-seq-length-number-label": "wav tup (s)",
201
+ "segments-tab-threads-number-info": "cpu Qapmey.",
202
+ "segments-tab-threads-number-label": "cpu Qap",
203
+ "segments-tab-title": "wavmey",
204
+ "settings-tab-error-log-textbox-info-path": "He",
205
+ "settings-tab-error-log-textbox-label": "QapHa' log wav",
206
+ "settings-tab-error-log-textbox-placeholder": "yInIDHa'",
207
+ "settings-tab-language-dropdown-info": "chutmey chu' yIchoH 'ach chut qaStaHvIS yItagh.",
208
+ "settings-tab-language-dropdown-label": "Hol lo'",
209
+ "settings-tab-theme-dropdown-dark-option": "Hurgh",
210
+ "settings-tab-theme-dropdown-info": "Qapla'! chut choH qaStaHvIS QapHa'laH.",
211
+ "settings-tab-theme-dropdown-label": "chut",
212
+ "settings-tab-theme-dropdown-light-option": "wov",
213
+ "settings-tab-title": "chut mutlh",
214
+ "single-audio-label": "De' wav",
215
+ "single-tab-analyze-file-error": "wav pojlaHbe'",
216
+ "single-tab-download-button-label": "nIqHom laHmey",
217
+ "single-tab-generate-spectrogram-error": "wav taQ chenmoHlaHbe'",
218
+ "single-tab-output-header-common-name": "motlh pong",
219
+ "single-tab-output-header-confidence": "vIt (qel)",
220
+ "single-tab-output-header-end": "Dor (s)",
221
+ "single-tab-output-header-sci-name": "Hol qonwI' pong",
222
+ "single-tab-output-header-start": "Tagh (s)",
223
+ "single-tab-spectrogram-checkbox-info": "wavmey tInmo' QapHa'laH.",
224
+ "single-tab-spectrogram-checkbox-label": "nuvmey vItlhutlh",
225
+ "single-tab-title": "wa' poj",
226
+ "species-list-accordion-label": "Segh wIv",
227
+ "species-list-coordinates-lat-number-info": "wav chellu' le' yotlh.",
228
+ "species-list-coordinates-lat-number-label": "Daq (lang)",
229
+ "species-list-coordinates-lon-number-info": "Daq logh.",
230
+ "species-list-coordinates-lon-number-label": "Daq (tugh)",
231
+ "species-list-coordinates-threshold-slider-info": "qel motlh qochHa'moH.",
232
+ "species-list-coordinates-threshold-slider-label": "minimum Daq qelbe'",
233
+ "species-list-coordinates-week-slider-info": "pIH lang Segh chu' Hogh 1-48.",
234
+ "species-list-coordinates-week-slider-label": "Hogh",
235
+ "species-list-coordinates-yearlong-checkbox-label": "DIS",
236
+ "species-list-custom-classifier-selection-button-label": "wIv tu'law'",
237
+ "species-list-custom-list-file-label": "wav",
238
+ "species-list-radio-info": "wav Seghmey chu'.",
239
+ "species-list-radio-label": "Segh wIv",
240
+ "species-list-radio-option-all": "Hoch Seghmey",
241
+ "species-list-radio-option-custom-classifier": "chu' tu'law'",
242
+ "species-list-radio-option-custom-list": "chu' Seghmey",
243
+ "species-list-radio-option-predict-list": "Segh Daqmey",
244
+ "species-tab-filename-textbox-label": "wav pong, 'species_list.txt' lo'laH",
245
+ "species-tab-finish-info": "Seghmey wav tu'lu'law'",
246
+ "species-tab-select-output-directory-button-label": "wav Daq wIv",
247
+ "species-tab-sort-radio-info": "rarmeH Seghmey vIghro' qel pagh Hol pong.",
248
+ "species-tab-sort-radio-label": "rarmeH",
249
+ "species-tab-sort-radio-option-alphabetically": "Hol pong",
250
+ "species-tab-sort-radio-option-frequency": "vIghro'",
251
+ "species-tab-start-button-label": "Seghmey wav yInob",
252
+ "species-tab-title": "Seghmey",
253
+ "training-tab-audio-speed-slider-info": "mI' motlhHa' veb, mI' motlh veb. -10 = 10logh veb, 10 = 10logh veb. 1.0 = pagh choH.",
254
+ "training-tab-audio-speed-slider-label": "Qo' veb",
255
+ "training-tab-autotune-checkbox-info": "vIghro' qechmey chu'.",
256
+ "training-tab-autotune-checkbox-label": "qeq yIchoH",
257
+ "training-tab-autotune-executions-number-info": "Qapmey chu' Seghmey.",
258
+ "training-tab-autotune-executions-number-label": "qeq Qapmey chu'",
259
+ "training-tab-autotune-trials-number-info": "wa' Qapmey chu'.",
260
+ "training-tab-autotune-trials-number-label": "qeq Qapmey",
261
+ "training-tab-batchsize-number-info": "qeq qechmey chu'.",
262
+ "training-tab-batchsize-number-label": "batch qechmey",
263
+ "training-tab-cache-file-name-textbox-info": "wav pongmey.",
264
+ "training-tab-cache-mode-radio-info": "wav cachmey.",
265
+ "training-tab-cache-mode-radio-label": "mode cachmey",
266
+ "training-tab-cache-mode-radio-option-load": "wav",
267
+ "training-tab-cache-mode-radio-option-none": "tugh",
268
+ "training-tab-cache-mode-radio-option-save": "wavmey",
269
+ "training-tab-cache-select-directory-button-label": "wav cachmey",
270
+ "training-tab-cache-select-file-button-label": "wav cachmey",
271
+ "training-tab-classes-dataframe-column-classes-header": "Seghmey",
272
+ "training-tab-classifier-textbox-info": "tu'law' pongmey chu'.",
273
+ "training-tab-crop-mode-radio-info": "wav qeqmey chu'.",
274
+ "training-tab-crop-mode-radio-label": "mode qeqmey",
275
+ "training-tab-crop-mode-radio-option-center": "SochHa'",
276
+ "training-tab-crop-mode-radio-option-first": "tagh",
277
+ "training-tab-crop-mode-radio-option-segments": "wavmey",
278
+ "training-tab-crop-mode-radio-option-smart": "qeqmey",
279
+ "training-tab-crop-overlap-number-info": "chu'law'.",
280
+ "training-tab-crop-overlap-number-label": "wavmey qeq",
281
+ "training-tab-dropout-number-info": "patlhmey nIvqu' qeqHa'moHlaH 'ach qeq QatlhmoHlaH.",
282
+ "training-tab-dropout-number-label": "Dropout patlh",
283
+ "training-tab-early-stoppage-msg": "qeqHa'laH.",
284
+ "training-tab-epochs-number-info": "qeq epQochmey chu'.",
285
+ "training-tab-epochs-number-label": "epQochmey",
286
+ "training-tab-focal-loss-alpha-slider-info": "qeq alpha cher. patlhmey nIvqu' qeq QaQmoH (0.25).",
287
+ "training-tab-focal-loss-alpha-slider-label": "focal loss alpha",
288
+ "training-tab-focal-loss-gamma-slider-info": "qeq gamma cher. patlhmey nIvqu' qeq QatlhmoH (2.0).",
289
+ "training-tab-focal-loss-gamma-slider-label": "focal loss gamma",
290
+ "training-tab-hiddenunits-number-info": "wa' loQ.",
291
+ "training-tab-hiddenunits-number-label": "Sochmey Seghmey",
292
+ "training-tab-input-selection-button-label": "wav qeq",
293
+ "training-tab-learningrate-number-info": "chu' qechmey.",
294
+ "training-tab-learningrate-number-label": "ghel Seghmey",
295
+ "training-tab-model-save-mode-radio-info": "chu'law' Seghmey.",
296
+ "training-tab-model-save-mode-radio-label": "mode qeq",
297
+ "training-tab-model-save-mode-radio-option-append": "wa'lo'",
298
+ "training-tab-model-save-mode-radio-option-replace": "choH",
299
+ "training-tab-output-format-both": "cha'",
300
+ "training-tab-output-format-radio-info": "Hol chu' qel.",
301
+ "training-tab-output-format-radio-label": "tu'law' Hol",
302
+ "training-tab-select-output-button-label": "tu'law' wav",
303
+ "training-tab-start-training-button-label": "qeq yItagh",
304
+ "training-tab-test-data-selection-button-label": "wav qeq (rap)",
305
+ "training-tab-title": "qeq",
306
+ "training-tab-upsampling-radio-info": "Seghmey qochHa'.",
307
+ "training-tab-upsampling-radio-label": "qechmey choH",
308
+ "training-tab-upsampling-radio-option-linear": "ghunHa' linear",
309
+ "training-tab-upsampling-radio-option-mean": "qechmey 'uch",
310
+ "training-tab-upsampling-radio-option-repeat": "qechmey ghun",
311
+ "training-tab-upsampling-ratio-slider-info": "chu' ratio Seghmey.",
312
+ "training-tab-upsampling-ratio-slider-label": "qochHa' ratio",
313
+ "training-tab-use-focal-loss-checkbox-info": "qeq focal loss lo'. qeq QatlhmoH 'ej qeq laH QaQmoH.",
314
+ "training-tab-use-focal-loss-checkbox-label": "focal loss lo'",
315
+ "training-tab-use-labelsmoothing-checkbox-info": "qeq label smoothing lo'. qeq laH QaQmoH 'ej qeq laH QatlhmoH.",
316
+ "training-tab-use-labelsmoothing-checkbox-label": "label smoothing lo'",
317
+ "training-tab-use-mixup-checkbox-info": "nuvHa'choHmoH lo'law' qeq qechmey chu'.",
318
+ "training-tab-use-mixup-checkbox-label": "nuvHa'choHmoH lo'",
319
+ "validation-no-audio-directory-selected": "wav Daq tu'Ha'.",
320
+ "validation-no-audio-files-found": "wavmey chu'Ha'.",
321
+ "validation-no-custom-classifier-selected": "chu' tu'law' yIwIvHa'.",
322
+ "validation-no-directory-for-classifier-selected": "tu'law' Daq yIwIv.",
323
+ "validation-no-directory-selected": "Daq yIwIv.",
324
+ "validation-no-file-selected": "wav yIwIv.",
325
+ "validation-no-negative-samples-in-binary-classification": "lu'Ha' Seghmey binary qel lo'laHbe'.",
326
+ "validation-no-species-list-selected": "Seghmey wav yIwIv.",
327
+ "validation-no-training-data-selected": "qeq De' yIwIv.",
328
+ "validation-no-valid-batch-size": "batch chu' yIchoH.",
329
+ "validation-no-valid-classifier-name": "tu'law' pong yIchoH.",
330
+ "validation-no-valid-epoch-number": "epQochmey yIchoH.",
331
+ "validation-no-valid-frequency": "qeq 'eS patlh yIchoH",
332
+ "validation-no-valid-learning-rate": "qeq patlh yIchoH.",
333
+ "validation-non-event-samples-required-in-binary-classification": "binary qeq 'eS Seghmey lo'laH.",
334
+ "validation-only-repeat-upsampling-for-multi-label": "wa'logh qochHa' Seghmey multi-label lo'laH."
335
335
  }