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": "Locale for the translated species common names in the output",
3
- "analyze-locale-dropdown-label": "Locale",
4
- "analyze-start-button-label": "Analyze",
5
- "embedding-settings-accordion-label": "Settings",
6
- "embedding-settings-audio-speed-slider-info": "Negative values slow down, positive values speed up. The audio speed modification will be stored in the database.",
7
- "embedding-settings-audio-speed-slider-label": "Audio speed modification",
8
- "embedding-settings-batchsize-number-info": "Number of samples to process at the same time.",
9
- "embedding-settings-batchsize-number-label": "Batch size",
10
- "embedding-settings-fmax-number-info": "Note that frequency cut-offs used here also need to be used when using the embeddings search.",
11
- "embedding-settings-fmax-number-label": "Maximum bandpass frequency (Hz)",
12
- "embedding-settings-fmin-number-info": "Note that frequency cut-offs used here also need to be used when using the embeddings search.",
13
- "embedding-settings-fmin-number-label": "Minimum bandpass frequency (Hz)",
14
- "embedding-settings-overlap-slider-info": "Adjust the overlap between the samples to extract embeddings from.",
15
- "embedding-settings-overlap-slider-label": "Overlap (s)",
16
- "embedding-settings-threads-number-info": "Number of CPU threads to use.",
17
- "embedding-settings-threads-number-label": "Threads",
18
- "embeddings-db-already-exists-info": "Database already exists, using audio speed and bandpass filter options from database settings.",
19
- "embeddings-db-dir-validation-message": "Please select a directory for the database",
20
- "embeddings-db-name-validation-message": "Please specify a name for the database",
21
- "embeddings-extract-tab-title": "Extract",
22
- "embeddings-input-dir-validation-message": "Please select an input directory",
23
- "embeddings-search-crop-mode-radio-info": "Adjust how to crop the query sample if it is longer than the model input.",
24
- "embeddings-search-crop-overlap-number-info": "Adjust the overlap of the query sample.",
25
- "embeddings-search-crop-overlap-number-label": "Crop segment overlap (s)",
26
- "embeddings-search-db-audio-speed-number-label": "Audio speed factor",
27
- "embeddings-search-db-bandpass-frequencies-label": "Bandpass frequencies",
28
- "embeddings-search-db-embedding-count-number-label": "Embeddings in Database",
29
- "embeddings-search-db-selection-button-label": "Select database",
30
- "embeddings-search-db-selection-error": "Couldn't find a database, make sure to select the directory containing the database.",
31
- "embeddings-search-db-selection-textbox-label": "Database",
32
- "embeddings-search-db-validation-message": "Please select a database to search in",
33
- "embeddings-search-export-button-label": "Export selected samples",
34
- "embeddings-search-export-finish-info": "Finished exporting selected samples to:",
35
- "embeddings-search-export-no-results-info": "No samples selected for export",
36
- "embeddings-search-max-samples-number-label": "Maximum number of samples to search for",
37
- "embeddings-search-max-samples-validation-message": "Please specify the maximum number of samples to search for",
38
- "embeddings-search-query-sample-textbox-label": "Query sample",
39
- "embeddings-search-query-validation-message": "Please select a query sample",
40
- "embeddings-search-score-fn-select-label": "Score function",
41
- "embeddings-search-select-query-button-label": "Select query sample",
42
- "embeddings-search-start-button-label": "Start search",
43
- "embeddings-search-tab-title": "Search",
44
- "embeddings-tab-dataset-info": "Specify the dataset name",
45
- "embeddings-tab-dataset-label": "Dataset",
46
- "embeddings-tab-db-info": "The name of the database",
47
- "embeddings-tab-finish-info": "Finished extracting embeddings to:",
48
- "embeddings-tab-select-db-directory-button-label": "Select database directory",
49
- "embeddings-tab-select-input-directory-button-label": "Select input directory (recursive)",
50
- "embeddings-tab-start-button-label": "Extract embeddings",
51
- "embeddings-tab-title": "Embeddings",
52
- "eval-tab-accuracy-checkbox-info": "Accuracy measures the percentage of correct predictions made by the model.",
53
- "eval-tab-annotation-col-accordion-label": "Annotation columns",
54
- "eval-tab-annotation-selection-button-label": "Select annotation directory",
55
- "eval-tab-ap-checkbox-info": "Average Precision summarizes the precision-recall curve by averaging precision across all recall levels.",
56
- "eval-tab-auroc-checkbox-info": "AUROC measures the likelihood that the model ranks a random positive case higher than a random negative case.",
57
- "eval-tab-calculate-metrics-button-label": "Calculate metrics",
58
- "eval-tab-class-mapping-accordion-label": "Class mapping (optional)",
59
- "eval-tab-classwise-checkbox-info": "Calculate metrics for each class separately.",
60
- "eval-tab-classwise-checkbox-label": "Class-wise metrics",
61
- "eval-tab-column-class-label": "Class",
62
- "eval-tab-column-confidence-label": "Confidence",
63
- "eval-tab-column-duration-label": "Duration",
64
- "eval-tab-column-end-time-label": "End time",
65
- "eval-tab-column-recording-label": "Recording",
66
- "eval-tab-column-start-time-label": "Start time",
67
- "eval-tab-data-table-download-button-label": "Download data table",
68
- "eval-tab-error-calc-metrics-first": "Please calculate metrics first.",
69
- "eval-tab-error-during-processing": "Error during processing",
70
- "eval-tab-error-init-processor": "Error initializing processor",
71
- "eval-tab-error-missing-col": "Column missing in files",
72
- "eval-tab-error-missing-col-info": "Please check the column names.",
73
- "eval-tab-error-no-class-selected": "At least one class must be selected.",
74
- "eval-tab-error-no-valid-recording-duration": "Please enter a valid number for recording duration.",
75
- "eval-tab-error-plotting-confusion-matrix": "Error plotting confusion matrix",
76
- "eval-tab-error-plotting-metrics": "Error plotting metrics",
77
- "eval-tab-error-plotting-metrics-all-thresholds": "Error plotting metrics for all thresholds",
78
- "eval-tab-error-saving-data-table": "Error saving data table.",
79
- "eval-tab-error-saving-mapping-template": "Error saving mapping template.",
80
- "eval-tab-error-saving-results-table": "Error saving results table.",
81
- "eval-tab-f1-checkbox-info": "The F1 score is the harmonic mean of precision and recall, balancing both metrics.",
82
- "eval-tab-info-data-table-saved": "Data table saved successfully!",
83
- "eval-tab-info-mapping-template-saved": "Mapping template saved successfully!",
84
- "eval-tab-info-results-table-saved": "Results table saved successfully!",
85
- "eval-tab-mapping-file-template-download-button-label": "Download template",
86
- "eval-tab-metrics-accordian-label": "Select metrics",
87
- "eval-tab-min-overlap-number-info": "Overlap needed to assign an annotation to a sample.",
88
- "eval-tab-min-overlap-number-label": "Minimum overlap (s)",
89
- "eval-tab-no-files-found": "No files found",
90
- "eval-tab-parameters-accordion-label": "Parameters",
91
- "eval-tab-plot-confusion-matrix-button-label": "Plot confusion matrix",
92
- "eval-tab-plot-metrics-all-thresholds-button-label": "Plot metrics for all thresholds",
93
- "eval-tab-plot-metrics-button-label": "Plot metrics",
94
- "eval-tab-precision-checkbox-info": "Precision measures how often the models positive predictions are actually correct.",
95
- "eval-tab-prediction-col-accordion-label": "Prediction columns",
96
- "eval-tab-prediction-selection-button-label": "Select prediction directory",
97
- "eval-tab-recall-checkbox-info": "Recall measures the percentage of actual positive cases correctly identified by the model for each class.",
98
- "eval-tab-recording-duration-textbox-info": "Inferred from the data if not specified.",
99
- "eval-tab-recording-duration-textbox-label": "Recording duration (s)",
100
- "eval-tab-recording-duration-textbox-placeholder": "Determined from files",
101
- "eval-tab-result-table-download-button-label": "Download results table",
102
- "eval-tab-sample-duration-number-info": "Audio sample length (in seconds).",
103
- "eval-tab-sample-duration-number-label": "Sample duration (s)",
104
- "eval-tab-select-classes-checkboxgroup-info": "Select classes to include in the evaluation.",
105
- "eval-tab-select-classes-checkboxgroup-label": "Select classes",
106
- "eval-tab-select-classes-recordings-accordion-label": "Select classes and recordings",
107
- "eval-tab-select-recordings-checkboxgroup-info": "Select recordings to include in the evaluation.",
108
- "eval-tab-select-recordings-checkboxgroup-label": "Select recordings",
109
- "eval-tab-selections-column-file-header": "File",
110
- "eval-tab-threshold-number-info": "Threshold for classifying a prediction as positive.",
111
- "eval-tab-threshold-number-label": "Threshold",
112
- "eval-tab-title": "Evaluation",
113
- "eval-tab-upload-mapping-file-label": "Upload mapping file",
114
- "eval-tab-warning-error-reading-file": "Error reading file",
115
- "footer-help": "For docs and support visit",
116
- "inference-settings-accordion-label": "Inference settings",
117
- "inference-settings-audio-speed-slider-info": "Negative values slow down, positive values speed up. Note that audio speed modification should also be used during training in order to be effective here.",
118
- "inference-settings-audio-speed-slider-label": "Audio speed modification",
119
- "inference-settings-confidence-slider-info": "Adjust the threshold to ignore results with confidence below this level.",
120
- "inference-settings-confidence-slider-label": "Minimum confidence",
121
- "inference-settings-fmax-number-info": "Note that frequency cut-offs should also be used during training in order to be effective here.",
122
- "inference-settings-fmax-number-label": "Maximum bandpass frequency (Hz)",
123
- "inference-settings-fmin-number-info": "Note that frequency cut-offs should also be used during training in order to be effective here.",
124
- "inference-settings-fmin-number-label": "Minimum bandpass frequency (Hz)",
125
- "inference-settings-merge-consecutive-slider-info": "Number of consecutive detections that are merged for each species. Combines N consecutive detections into one.",
126
- "inference-settings-merge-consecutive-slider-label": "Merge consecutive detections",
127
- "inference-settings-overlap-slider-info": "BirdNET uses 3s segments. Determines the overlap with previous segment.",
128
- "inference-settings-overlap-slider-label": "Overlap (s)",
129
- "inference-settings-sensitivity-slider-info": "Adjust the distribution of prediction scores. Higher values result in higher scores.",
130
- "inference-settings-sensitivity-slider-label": "Sensitivity",
131
- "inference-settings-top-n-number-info": "Ignores the confidence threshold.",
132
- "inference-settings-top-n-number-label": "Top N species",
133
- "inference-settings-use-top-n-checkbox-info": "Picks the top N species sorted by confidence score.",
134
- "inference-settings-use-top-n-checkbox-label": "Use top N species",
135
- "multi-tab-batchsize-number-info": "Number of samples to process at the same time.",
136
- "multi-tab-batchsize-number-label": "Batch size",
137
- "multi-tab-input-selection-button-label": "Select input directory (recursive)",
138
- "multi-tab-output-accordion-label": "Output settings",
139
- "multi-tab-output-combine-tables-checkbox-info": "Check this option to merge all selection tables into a single table.",
140
- "multi-tab-output-combine-tables-checkbox-label": "Combine selection tables",
141
- "multi-tab-output-combined-table-name-textbox-info": "Name of the combined selection table.",
142
- "multi-tab-output-combined-table-name-textbox-label": "Combined table filename",
143
- "multi-tab-output-radio-info": "Specify the output format of classifications.",
144
- "multi-tab-output-radio-label": "Result type",
145
- "multi-tab-output-selection-button-label": "Select output directory",
146
- "multi-tab-output-textbox-label": "Output directory",
147
- "multi-tab-output-textbox-placeholder": "If not selected, the input directory will be used.",
148
- "multi-tab-result-dataframe-column-execution-header": "Execution",
149
- "multi-tab-result-dataframe-column-file-header": "File",
150
- "multi-tab-samples-dataframe-column-duration-header": "Length",
151
- "multi-tab-samples-dataframe-column-subpath-header": "Subpath",
152
- "multi-tab-samples-dataframe-no-files-found": "No files found",
153
- "multi-tab-skip-existing-checkbox-info": "Skip files that already have a result.",
154
- "multi-tab-skip-existing-checkbox-label": "Skip existing results",
155
- "multi-tab-threads-number-info": "Number of CPU threads.",
156
- "multi-tab-threads-number-label": "Threads",
157
- "multi-tab-title": "Batch analysis",
158
- "progress-autotune": "Autotune in progress",
159
- "progress-build-classifier": "Loading data & building classifier",
160
- "progress-loading-data": "Loading data for",
161
- "progress-preparing": "Preparing",
162
- "progress-saving": "Saving at",
163
- "progress-search": "Searching files",
164
- "progress-starting": "Starting",
165
- "progress-training": "Training model",
166
- "review-tab-autoplay-checkbox-label": "Autoplay",
167
- "review-tab-file-matrix-neg-header": "Negative",
168
- "review-tab-file-matrix-pos-header": "Positive",
169
- "review-tab-file-matrix-todo-header": "Todo",
170
- "review-tab-input-directory-button-label": "Select input directory",
171
- "review-tab-neg-button-label": "Negative",
172
- "review-tab-no-files-error": "No more files to review.",
173
- "review-tab-no-files-label": "No files found",
174
- "review-tab-no-species-found-error": "No species found in the selected directory.",
175
- "review-tab-pos-button-label": "Positive",
176
- "review-tab-regression-plot-label": "Regression",
177
- "review-tab-regression-plot-x-label": "Confidence",
178
- "review-tab-regression-plot-y-label-false": "False",
179
- "review-tab-regression-plot-y-label-true": "True",
180
- "review-tab-segment-matrix-count-header": "Count",
181
- "review-tab-skip-button-label": "Skip",
182
- "review-tab-species-dropdown-label": "Species",
183
- "review-tab-spectrogram-plot-label": "Spectrogram",
184
- "review-tab-start-button-label": "Start reviewing",
185
- "review-tab-title": "Review",
186
- "review-tab-undo-button-label": "Undo",
187
- "segments-tab-extract-button-label": "Extract segments",
188
- "segments-tab-max-seq-number-info": "Maximum number of randomly extracted segments per species.",
189
- "segments-tab-max-seq-number-label": "Maximum number of segments",
190
- "segments-tab-min-confidence-slider-info": "Select only segments with a confidence above this threshold.",
191
- "segments-tab-min-confidence-slider-label": "Minimum confidence",
192
- "segments-tab-output-selection-button-label": "Select output directory",
193
- "segments-tab-output-selection-textbox-placeholder": "Same as audio directory if not selected",
194
- "segments-tab-result-dataframe-column-execution-header": "Execution",
195
- "segments-tab-result-dataframe-column-file-header": "File",
196
- "segments-tab-results-input-textbox-placeholder": "Same as audio directory if not selected",
197
- "segments-tab-select-audio-input-directory-button-label": "Select audio directory (recursive)",
198
- "segments-tab-select-results-input-directory-button-label": "Select result directory",
199
- "segments-tab-seq-length-number-info": "Length of the extracted segments in seconds.",
200
- "segments-tab-seq-length-number-label": "Sequence length (s)",
201
- "segments-tab-threads-number-info": "Number of CPU threads.",
202
- "segments-tab-threads-number-label": "Threads",
203
- "segments-tab-title": "Segments",
204
- "settings-tab-error-log-textbox-info-path": "Path",
205
- "settings-tab-error-log-textbox-label": "Error log file",
206
- "settings-tab-error-log-textbox-placeholder": "No content",
207
- "settings-tab-language-dropdown-info": "Changes will only take effect after restarting the application.",
208
- "settings-tab-language-dropdown-label": "GUI Language",
209
- "settings-tab-theme-dropdown-dark-option": "Dark",
210
- "settings-tab-theme-dropdown-info": "WARNING: Changing the theme will reload the window.",
211
- "settings-tab-theme-dropdown-label": "Theme",
212
- "settings-tab-theme-dropdown-light-option": "Light",
213
- "settings-tab-title": "Settings",
214
- "single-audio-label": "file",
215
- "single-tab-analyze-file-error": "Could not analyze file",
216
- "single-tab-download-button-label": "Download result table",
217
- "single-tab-generate-spectrogram-error": "Could not generate spectrogram",
218
- "single-tab-output-header-common-name": "Common name",
219
- "single-tab-output-header-confidence": "Confidence",
220
- "single-tab-output-header-end": "End",
221
- "single-tab-output-header-sci-name": "Scientific name",
222
- "single-tab-output-header-start": "Start",
223
- "single-tab-spectrogram-checkbox-info": "Potentially slow for long audio files.",
224
- "single-tab-spectrogram-checkbox-label": "Generate spectrogram",
225
- "single-tab-title": "Single analysis",
226
- "species-list-accordion-label": "Species selection",
227
- "species-list-coordinates-lat-number-info": "Recording location latitude.",
228
- "species-list-coordinates-lat-number-label": "Latitude",
229
- "species-list-coordinates-lon-number-info": "Recording location longitude.",
230
- "species-list-coordinates-lon-number-label": "Longitude",
231
- "species-list-coordinates-threshold-slider-info": "Minimum occurrence probability for a species to be included.",
232
- "species-list-coordinates-threshold-slider-label": "Location filter threshold",
233
- "species-list-coordinates-week-slider-info": "Specify the week of the year the recording was made, using a simplified system where each month is divided into four weeks. Choose a value from 1 to 48.",
234
- "species-list-coordinates-week-slider-label": "Week",
235
- "species-list-coordinates-yearlong-checkbox-label": "Year-round",
236
- "species-list-custom-classifier-selection-button-label": "Select classifier",
237
- "species-list-custom-list-file-label": "File",
238
- "species-list-radio-info": "Filter species that are included in output.",
239
- "species-list-radio-label": "Species list",
240
- "species-list-radio-option-all": "All species",
241
- "species-list-radio-option-custom-classifier": "Custom classifier",
242
- "species-list-radio-option-custom-list": "Custom species list",
243
- "species-list-radio-option-predict-list": "Species by location",
244
- "species-tab-filename-textbox-label": "Name of the file, if not specified 'species_list.txt' will be used.",
245
- "species-tab-finish-info": "Species list saved at",
246
- "species-tab-select-output-directory-button-label": "Select output directory",
247
- "species-tab-sort-radio-info": "Sort species by occurrence frequency or alphabetically.",
248
- "species-tab-sort-radio-label": "Sort by",
249
- "species-tab-sort-radio-option-alphabetically": "alphabetically",
250
- "species-tab-sort-radio-option-frequency": "frequency",
251
- "species-tab-start-button-label": "Generate species list",
252
- "species-tab-title": "Species",
253
- "training-tab-audio-speed-slider-info": "Nуgative values slow down, positive values speed up. -10 equals 10x decrease, 10 equals 10x increase. 1.0 equals no change.",
254
- "training-tab-audio-speed-slider-label": "Audio speed modification",
255
- "training-tab-autotune-checkbox-info": "Searches for the best hyperparameters, but takes more time.",
256
- "training-tab-autotune-checkbox-label": "Use autotune",
257
- "training-tab-autotune-executions-number-info": "The number of times a training run with a set of hyperparameters is repeated during hyperparameter tuning (this reduces the variance).",
258
- "training-tab-autotune-executions-number-label": "Executions per trial",
259
- "training-tab-autotune-trials-number-info": "Number of training runs for hyperparameter tuning.",
260
- "training-tab-autotune-trials-number-label": "Trials",
261
- "training-tab-batchsize-number-info": "Number of samples to process in a batch.",
262
- "training-tab-batchsize-number-label": "Batch size",
263
- "training-tab-cache-file-name-textbox-info": "The name of the cache file.",
264
- "training-tab-cache-mode-radio-info": "Adjust how to cache training data. Select 'none' for no caching, 'load' to load from file, and 'save' to save the compressed training data.",
265
- "training-tab-cache-mode-radio-label": "Training data cache mode",
266
- "training-tab-cache-mode-radio-option-load": "load",
267
- "training-tab-cache-mode-radio-option-none": "none",
268
- "training-tab-cache-mode-radio-option-save": "save",
269
- "training-tab-cache-select-directory-button-label": "Select the cache file directory",
270
- "training-tab-cache-select-file-button-label": "Select cache file location",
271
- "training-tab-classes-dataframe-column-classes-header": "Classes",
272
- "training-tab-classifier-textbox-info": "The name of the new classifier.",
273
- "training-tab-crop-mode-radio-info": "Adjust how to crop samples that are longer than the model input.",
274
- "training-tab-crop-mode-radio-label": "Crop mode",
275
- "training-tab-crop-mode-radio-option-center": "center",
276
- "training-tab-crop-mode-radio-option-first": "first",
277
- "training-tab-crop-mode-radio-option-segments": "segments",
278
- "training-tab-crop-mode-radio-option-smart": "smart",
279
- "training-tab-crop-overlap-number-info": "Adjust the overlap of training samples.",
280
- "training-tab-crop-overlap-number-label": "Crop segment overlap (s)",
281
- "training-tab-dropout-number-info": "Higher values may help prevent overfitting.",
282
- "training-tab-dropout-number-label": "Dropout rate",
283
- "training-tab-early-stoppage-msg": "Stopped early - validation metric not improving.",
284
- "training-tab-epochs-number-info": "Number of training epochs.",
285
- "training-tab-epochs-number-label": "Epochs",
286
- "training-tab-focal-loss-alpha-slider-info": "Balancing parameter. Controls weight between positive and negative examples (recommended value 0.25).",
287
- "training-tab-focal-loss-alpha-slider-label": "Focal loss alpha",
288
- "training-tab-focal-loss-gamma-slider-info": "Focusing parameter. Higher values give more weight to hard examples (recommended value 2.0).",
289
- "training-tab-focal-loss-gamma-slider-label": "Focal loss gamma",
290
- "training-tab-hiddenunits-number-info": "Number of hidden units. If set to >0, a two-layer classifier is used.",
291
- "training-tab-hiddenunits-number-label": "Hidden units",
292
- "training-tab-input-selection-button-label": "Select training data",
293
- "training-tab-learningrate-number-info": "Learning rate for the optimizer.",
294
- "training-tab-learningrate-number-label": "Learning rate",
295
- "training-tab-model-save-mode-radio-info": "'replace' will overwrite the original classification layer, leaving only the trained classes, and 'append' will combine the original classification layer with the new one.",
296
- "training-tab-model-save-mode-radio-label": "Model save mode",
297
- "training-tab-model-save-mode-radio-option-append": "append",
298
- "training-tab-model-save-mode-radio-option-replace": "replace",
299
- "training-tab-output-format-both": "both",
300
- "training-tab-output-format-radio-info": "Format of the trained classifier.",
301
- "training-tab-output-format-radio-label": "Model output format",
302
- "training-tab-select-output-button-label": "Select classifier output",
303
- "training-tab-start-training-button-label": "Start training",
304
- "training-tab-test-data-selection-button-label": "Select test data (optional)",
305
- "training-tab-title": "Train",
306
- "training-tab-upsampling-radio-info": "Balance train data by upsampling minority classes.",
307
- "training-tab-upsampling-radio-label": "Upsampling mode",
308
- "training-tab-upsampling-radio-option-linear": "linear",
309
- "training-tab-upsampling-radio-option-mean": "mean",
310
- "training-tab-upsampling-radio-option-repeat": "repeat",
311
- "training-tab-upsampling-ratio-slider-info": "The minimum ratio for a minority class compared to the majority class after upsampling.",
312
- "training-tab-upsampling-ratio-slider-label": "Upsampling ratio",
313
- "training-tab-use-focal-loss-checkbox-info": "Uses focal loss during training. This gives more weight to hard examples and helps handle class imbalance.",
314
- "training-tab-use-focal-loss-checkbox-label": "Use focal loss",
315
- "training-tab-use-labelsmoothing-checkbox-info": "Applies label smoothing during training. This can help improve model generalization by preventing the model from becoming too confident.",
316
- "training-tab-use-labelsmoothing-checkbox-label": "Use label smoothing",
317
- "training-tab-use-mixup-checkbox-info": "Applies mixup augmentation during training. This can help improve model generalization by creating new training samples through linear interpolation.",
318
- "training-tab-use-mixup-checkbox-label": "Use mixup",
319
- "validation-no-audio-directory-selected": "No audio directory selected",
320
- "validation-no-audio-files-found": "No audio files found.",
321
- "validation-no-custom-classifier-selected": "No custom classifier selected.",
322
- "validation-no-directory-for-classifier-selected": "Please select a directory for the classifier.",
323
- "validation-no-directory-selected": "Please select a directory.",
324
- "validation-no-file-selected": "Please select a file.",
325
- "validation-no-negative-samples-in-binary-classification": "Negative labels can't be used with binary classification",
326
- "validation-no-species-list-selected": "Please select a species list.",
327
- "validation-no-training-data-selected": "Please select your training data.",
328
- "validation-no-valid-batch-size": "Please enter a valid batch size.",
329
- "validation-no-valid-classifier-name": "Please enter a valid name for the classifier.",
330
- "validation-no-valid-epoch-number": "Please enter a valid number of epochs.",
331
- "validation-no-valid-frequency": "Please enter a valid frequency in",
332
- "validation-no-valid-learning-rate": "Please enter a valid learning rate.",
333
- "validation-non-event-samples-required-in-binary-classification": "Non-event samples are required for binary classification",
334
- "validation-only-repeat-upsampling-for-multi-label": "Only repeat-upsampling is available for multi-label"
1
+ {
2
+ "analyze-locale-dropdown-info": "Locale for the translated species common names in the output",
3
+ "analyze-locale-dropdown-label": "Locale",
4
+ "analyze-start-button-label": "Analyze",
5
+ "embedding-settings-accordion-label": "Settings",
6
+ "embedding-settings-audio-speed-slider-info": "Negative values slow down, positive values speed up. The audio speed modification will be stored in the database.",
7
+ "embedding-settings-audio-speed-slider-label": "Audio speed modification",
8
+ "embedding-settings-batchsize-number-info": "Number of samples to process at the same time.",
9
+ "embedding-settings-batchsize-number-label": "Batch size",
10
+ "embedding-settings-fmax-number-info": "Note that frequency cut-offs used here also need to be used when using the embeddings search.",
11
+ "embedding-settings-fmax-number-label": "Maximum bandpass frequency (Hz)",
12
+ "embedding-settings-fmin-number-info": "Note that frequency cut-offs used here also need to be used when using the embeddings search.",
13
+ "embedding-settings-fmin-number-label": "Minimum bandpass frequency (Hz)",
14
+ "embedding-settings-overlap-slider-info": "Adjust the overlap between the samples to extract embeddings from.",
15
+ "embedding-settings-overlap-slider-label": "Overlap (s)",
16
+ "embedding-settings-threads-number-info": "Number of CPU threads to use.",
17
+ "embedding-settings-threads-number-label": "Threads",
18
+ "embeddings-db-already-exists-info": "Database already exists, using audio speed and bandpass filter options from database settings.",
19
+ "embeddings-db-dir-validation-message": "Please select a directory for the database",
20
+ "embeddings-db-name-validation-message": "Please specify a name for the database",
21
+ "embeddings-extract-tab-title": "Extract",
22
+ "embeddings-input-dir-validation-message": "Please select an input directory",
23
+ "embeddings-search-crop-mode-radio-info": "Adjust how to crop the query sample if it is longer than the model input.",
24
+ "embeddings-search-crop-overlap-number-info": "Adjust the overlap of the query sample.",
25
+ "embeddings-search-crop-overlap-number-label": "Crop segment overlap (s)",
26
+ "embeddings-search-db-audio-speed-number-label": "Audio speed factor",
27
+ "embeddings-search-db-bandpass-frequencies-label": "Bandpass frequencies",
28
+ "embeddings-search-db-embedding-count-number-label": "Embeddings in Database",
29
+ "embeddings-search-db-selection-button-label": "Select database",
30
+ "embeddings-search-db-selection-error": "Couldn't find a database, make sure to select the directory containing the database.",
31
+ "embeddings-search-db-selection-textbox-label": "Database",
32
+ "embeddings-search-db-validation-message": "Please select a database to search in",
33
+ "embeddings-search-export-button-label": "Export selected samples",
34
+ "embeddings-search-export-finish-info": "Finished exporting selected samples to:",
35
+ "embeddings-search-export-no-results-info": "No samples selected for export",
36
+ "embeddings-search-max-samples-number-label": "Maximum number of samples to search for",
37
+ "embeddings-search-max-samples-validation-message": "Please specify the maximum number of samples to search for",
38
+ "embeddings-search-query-sample-textbox-label": "Query sample",
39
+ "embeddings-search-query-validation-message": "Please select a query sample",
40
+ "embeddings-search-score-fn-select-label": "Score function",
41
+ "embeddings-search-select-query-button-label": "Select query sample",
42
+ "embeddings-search-start-button-label": "Start search",
43
+ "embeddings-search-tab-title": "Search",
44
+ "embeddings-tab-dataset-info": "Specify the dataset name",
45
+ "embeddings-tab-dataset-label": "Dataset",
46
+ "embeddings-tab-db-info": "The name of the database",
47
+ "embeddings-tab-finish-info": "Finished extracting embeddings to:",
48
+ "embeddings-tab-select-db-directory-button-label": "Select database directory",
49
+ "embeddings-tab-select-input-directory-button-label": "Select input directory (recursive)",
50
+ "embeddings-tab-start-button-label": "Extract embeddings",
51
+ "embeddings-tab-title": "Embeddings",
52
+ "eval-tab-accuracy-checkbox-info": "Accuracy measures the percentage of correct predictions made by the model.",
53
+ "eval-tab-annotation-col-accordion-label": "Annotation columns",
54
+ "eval-tab-annotation-selection-button-label": "Select annotation directory",
55
+ "eval-tab-ap-checkbox-info": "Average Precision summarizes the precision-recall curve by averaging precision across all recall levels.",
56
+ "eval-tab-auroc-checkbox-info": "AUROC measures the likelihood that the model ranks a random positive case higher than a random negative case.",
57
+ "eval-tab-calculate-metrics-button-label": "Calculate metrics",
58
+ "eval-tab-class-mapping-accordion-label": "Class mapping (optional)",
59
+ "eval-tab-classwise-checkbox-info": "Calculate metrics for each class separately.",
60
+ "eval-tab-classwise-checkbox-label": "Class-wise metrics",
61
+ "eval-tab-column-class-label": "Class",
62
+ "eval-tab-column-confidence-label": "Confidence",
63
+ "eval-tab-column-duration-label": "Duration",
64
+ "eval-tab-column-end-time-label": "End time",
65
+ "eval-tab-column-recording-label": "Recording",
66
+ "eval-tab-column-start-time-label": "Start time",
67
+ "eval-tab-data-table-download-button-label": "Download data table",
68
+ "eval-tab-error-calc-metrics-first": "Please calculate metrics first.",
69
+ "eval-tab-error-during-processing": "Error during processing",
70
+ "eval-tab-error-init-processor": "Error initializing processor",
71
+ "eval-tab-error-missing-col": "Column missing in files",
72
+ "eval-tab-error-missing-col-info": "Please check the column names.",
73
+ "eval-tab-error-no-class-selected": "At least one class must be selected.",
74
+ "eval-tab-error-no-valid-recording-duration": "Please enter a valid number for recording duration.",
75
+ "eval-tab-error-plotting-confusion-matrix": "Error plotting confusion matrix",
76
+ "eval-tab-error-plotting-metrics": "Error plotting metrics",
77
+ "eval-tab-error-plotting-metrics-all-thresholds": "Error plotting metrics for all thresholds",
78
+ "eval-tab-error-saving-data-table": "Error saving data table.",
79
+ "eval-tab-error-saving-mapping-template": "Error saving mapping template.",
80
+ "eval-tab-error-saving-results-table": "Error saving results table.",
81
+ "eval-tab-f1-checkbox-info": "The F1 score is the harmonic mean of precision and recall, balancing both metrics.",
82
+ "eval-tab-info-data-table-saved": "Data table saved successfully!",
83
+ "eval-tab-info-mapping-template-saved": "Mapping template saved successfully!",
84
+ "eval-tab-info-results-table-saved": "Results table saved successfully!",
85
+ "eval-tab-mapping-file-template-download-button-label": "Download template",
86
+ "eval-tab-metrics-accordian-label": "Select metrics",
87
+ "eval-tab-min-overlap-number-info": "Overlap needed to assign an annotation to a sample.",
88
+ "eval-tab-min-overlap-number-label": "Minimum overlap (s)",
89
+ "eval-tab-no-files-found": "No files found",
90
+ "eval-tab-parameters-accordion-label": "Parameters",
91
+ "eval-tab-plot-confusion-matrix-button-label": "Plot confusion matrix",
92
+ "eval-tab-plot-metrics-all-thresholds-button-label": "Plot metrics for all thresholds",
93
+ "eval-tab-plot-metrics-button-label": "Plot metrics",
94
+ "eval-tab-precision-checkbox-info": "Precision measures how often the models positive predictions are actually correct.",
95
+ "eval-tab-prediction-col-accordion-label": "Prediction columns",
96
+ "eval-tab-prediction-selection-button-label": "Select prediction directory",
97
+ "eval-tab-recall-checkbox-info": "Recall measures the percentage of actual positive cases correctly identified by the model for each class.",
98
+ "eval-tab-recording-duration-textbox-info": "Inferred from the data if not specified.",
99
+ "eval-tab-recording-duration-textbox-label": "Recording duration (s)",
100
+ "eval-tab-recording-duration-textbox-placeholder": "Determined from files",
101
+ "eval-tab-result-table-download-button-label": "Download results table",
102
+ "eval-tab-sample-duration-number-info": "Audio sample length (in seconds).",
103
+ "eval-tab-sample-duration-number-label": "Sample duration (s)",
104
+ "eval-tab-select-classes-checkboxgroup-info": "Select classes to include in the evaluation.",
105
+ "eval-tab-select-classes-checkboxgroup-label": "Select classes",
106
+ "eval-tab-select-classes-recordings-accordion-label": "Select classes and recordings",
107
+ "eval-tab-select-recordings-checkboxgroup-info": "Select recordings to include in the evaluation.",
108
+ "eval-tab-select-recordings-checkboxgroup-label": "Select recordings",
109
+ "eval-tab-selections-column-file-header": "File",
110
+ "eval-tab-threshold-number-info": "Threshold for classifying a prediction as positive.",
111
+ "eval-tab-threshold-number-label": "Threshold",
112
+ "eval-tab-title": "Evaluation",
113
+ "eval-tab-upload-mapping-file-label": "Upload mapping file",
114
+ "eval-tab-warning-error-reading-file": "Error reading file",
115
+ "footer-help": "For docs and support visit",
116
+ "inference-settings-accordion-label": "Inference settings",
117
+ "inference-settings-audio-speed-slider-info": "Negative values slow down, positive values speed up. Note that audio speed modification should also be used during training in order to be effective here.",
118
+ "inference-settings-audio-speed-slider-label": "Audio speed modification",
119
+ "inference-settings-confidence-slider-info": "Adjust the threshold to ignore results with confidence below this level.",
120
+ "inference-settings-confidence-slider-label": "Minimum confidence",
121
+ "inference-settings-fmax-number-info": "Note that frequency cut-offs should also be used during training in order to be effective here.",
122
+ "inference-settings-fmax-number-label": "Maximum bandpass frequency (Hz)",
123
+ "inference-settings-fmin-number-info": "Note that frequency cut-offs should also be used during training in order to be effective here.",
124
+ "inference-settings-fmin-number-label": "Minimum bandpass frequency (Hz)",
125
+ "inference-settings-merge-consecutive-slider-info": "Number of consecutive detections that are merged for each species. Combines N consecutive detections into one.",
126
+ "inference-settings-merge-consecutive-slider-label": "Merge consecutive detections",
127
+ "inference-settings-overlap-slider-info": "BirdNET uses 3s segments. Determines the overlap with previous segment.",
128
+ "inference-settings-overlap-slider-label": "Overlap (s)",
129
+ "inference-settings-sensitivity-slider-info": "Adjust the distribution of prediction scores. Higher values result in higher scores.",
130
+ "inference-settings-sensitivity-slider-label": "Sensitivity",
131
+ "inference-settings-top-n-number-info": "Ignores the confidence threshold.",
132
+ "inference-settings-top-n-number-label": "Top N species",
133
+ "inference-settings-use-top-n-checkbox-info": "Picks the top N species sorted by confidence score.",
134
+ "inference-settings-use-top-n-checkbox-label": "Use top N species",
135
+ "multi-tab-batchsize-number-info": "Number of samples to process at the same time.",
136
+ "multi-tab-batchsize-number-label": "Batch size",
137
+ "multi-tab-input-selection-button-label": "Select input directory (recursive)",
138
+ "multi-tab-output-accordion-label": "Output settings",
139
+ "multi-tab-output-combine-tables-checkbox-info": "Check this option to merge all selection tables into a single table.",
140
+ "multi-tab-output-combine-tables-checkbox-label": "Combine selection tables",
141
+ "multi-tab-output-combined-table-name-textbox-info": "Name of the combined selection table.",
142
+ "multi-tab-output-combined-table-name-textbox-label": "Combined table filename",
143
+ "multi-tab-output-radio-info": "Specify the output format of classifications.",
144
+ "multi-tab-output-radio-label": "Result type",
145
+ "multi-tab-output-selection-button-label": "Select output directory",
146
+ "multi-tab-output-textbox-label": "Output directory",
147
+ "multi-tab-output-textbox-placeholder": "If not selected, the input directory will be used.",
148
+ "multi-tab-result-dataframe-column-execution-header": "Execution",
149
+ "multi-tab-result-dataframe-column-file-header": "File",
150
+ "multi-tab-samples-dataframe-column-duration-header": "Length",
151
+ "multi-tab-samples-dataframe-column-subpath-header": "Subpath",
152
+ "multi-tab-samples-dataframe-no-files-found": "No files found",
153
+ "multi-tab-skip-existing-checkbox-info": "Skip files that already have a result.",
154
+ "multi-tab-skip-existing-checkbox-label": "Skip existing results",
155
+ "multi-tab-threads-number-info": "Number of CPU threads.",
156
+ "multi-tab-threads-number-label": "Threads",
157
+ "multi-tab-title": "Batch analysis",
158
+ "progress-autotune": "Autotune in progress",
159
+ "progress-build-classifier": "Loading data & building classifier",
160
+ "progress-loading-data": "Loading data for",
161
+ "progress-preparing": "Preparing",
162
+ "progress-saving": "Saving at",
163
+ "progress-search": "Searching files",
164
+ "progress-starting": "Starting",
165
+ "progress-training": "Training model",
166
+ "review-tab-autoplay-checkbox-label": "Autoplay",
167
+ "review-tab-file-matrix-neg-header": "Negative",
168
+ "review-tab-file-matrix-pos-header": "Positive",
169
+ "review-tab-file-matrix-todo-header": "Todo",
170
+ "review-tab-input-directory-button-label": "Select input directory",
171
+ "review-tab-neg-button-label": "Negative",
172
+ "review-tab-no-files-error": "No more files to review.",
173
+ "review-tab-no-files-label": "No files found",
174
+ "review-tab-no-species-found-error": "No species found in the selected directory.",
175
+ "review-tab-pos-button-label": "Positive",
176
+ "review-tab-regression-plot-label": "Regression",
177
+ "review-tab-regression-plot-x-label": "Confidence",
178
+ "review-tab-regression-plot-y-label-false": "False",
179
+ "review-tab-regression-plot-y-label-true": "True",
180
+ "review-tab-segment-matrix-count-header": "Count",
181
+ "review-tab-skip-button-label": "Skip",
182
+ "review-tab-species-dropdown-label": "Species",
183
+ "review-tab-spectrogram-plot-label": "Spectrogram",
184
+ "review-tab-start-button-label": "Start reviewing",
185
+ "review-tab-title": "Review",
186
+ "review-tab-undo-button-label": "Undo",
187
+ "segments-tab-extract-button-label": "Extract segments",
188
+ "segments-tab-max-seq-number-info": "Maximum number of randomly extracted segments per species.",
189
+ "segments-tab-max-seq-number-label": "Maximum number of segments",
190
+ "segments-tab-min-confidence-slider-info": "Select only segments with a confidence above this threshold.",
191
+ "segments-tab-min-confidence-slider-label": "Minimum confidence",
192
+ "segments-tab-output-selection-button-label": "Select output directory",
193
+ "segments-tab-output-selection-textbox-placeholder": "Same as audio directory if not selected",
194
+ "segments-tab-result-dataframe-column-execution-header": "Execution",
195
+ "segments-tab-result-dataframe-column-file-header": "File",
196
+ "segments-tab-results-input-textbox-placeholder": "Same as audio directory if not selected",
197
+ "segments-tab-select-audio-input-directory-button-label": "Select audio directory (recursive)",
198
+ "segments-tab-select-results-input-directory-button-label": "Select result directory",
199
+ "segments-tab-seq-length-number-info": "Length of the extracted segments in seconds.",
200
+ "segments-tab-seq-length-number-label": "Sequence length (s)",
201
+ "segments-tab-threads-number-info": "Number of CPU threads.",
202
+ "segments-tab-threads-number-label": "Threads",
203
+ "segments-tab-title": "Segments",
204
+ "settings-tab-error-log-textbox-info-path": "Path",
205
+ "settings-tab-error-log-textbox-label": "Error log file",
206
+ "settings-tab-error-log-textbox-placeholder": "No content",
207
+ "settings-tab-language-dropdown-info": "Changes will only take effect after restarting the application.",
208
+ "settings-tab-language-dropdown-label": "GUI Language",
209
+ "settings-tab-theme-dropdown-dark-option": "Dark",
210
+ "settings-tab-theme-dropdown-info": "WARNING: Changing the theme will reload the window.",
211
+ "settings-tab-theme-dropdown-label": "Theme",
212
+ "settings-tab-theme-dropdown-light-option": "Light",
213
+ "settings-tab-title": "Settings",
214
+ "single-audio-label": "file",
215
+ "single-tab-analyze-file-error": "Could not analyze file",
216
+ "single-tab-download-button-label": "Download result table",
217
+ "single-tab-generate-spectrogram-error": "Could not generate spectrogram",
218
+ "single-tab-output-header-common-name": "Common name",
219
+ "single-tab-output-header-confidence": "Confidence",
220
+ "single-tab-output-header-end": "End",
221
+ "single-tab-output-header-sci-name": "Scientific name",
222
+ "single-tab-output-header-start": "Start",
223
+ "single-tab-spectrogram-checkbox-info": "Potentially slow for long audio files.",
224
+ "single-tab-spectrogram-checkbox-label": "Generate spectrogram",
225
+ "single-tab-title": "Single analysis",
226
+ "species-list-accordion-label": "Species selection",
227
+ "species-list-coordinates-lat-number-info": "Recording location latitude.",
228
+ "species-list-coordinates-lat-number-label": "Latitude",
229
+ "species-list-coordinates-lon-number-info": "Recording location longitude.",
230
+ "species-list-coordinates-lon-number-label": "Longitude",
231
+ "species-list-coordinates-threshold-slider-info": "Minimum occurrence probability for a species to be included.",
232
+ "species-list-coordinates-threshold-slider-label": "Location filter threshold",
233
+ "species-list-coordinates-week-slider-info": "Specify the week of the year the recording was made, using a simplified system where each month is divided into four weeks. Choose a value from 1 to 48.",
234
+ "species-list-coordinates-week-slider-label": "Week",
235
+ "species-list-coordinates-yearlong-checkbox-label": "Year-round",
236
+ "species-list-custom-classifier-selection-button-label": "Select classifier",
237
+ "species-list-custom-list-file-label": "File",
238
+ "species-list-radio-info": "Filter species that are included in output.",
239
+ "species-list-radio-label": "Species list",
240
+ "species-list-radio-option-all": "All species",
241
+ "species-list-radio-option-custom-classifier": "Custom classifier",
242
+ "species-list-radio-option-custom-list": "Custom species list",
243
+ "species-list-radio-option-predict-list": "Species by location",
244
+ "species-tab-filename-textbox-label": "Name of the file, if not specified 'species_list.txt' will be used.",
245
+ "species-tab-finish-info": "Species list saved at",
246
+ "species-tab-select-output-directory-button-label": "Select output directory",
247
+ "species-tab-sort-radio-info": "Sort species by occurrence frequency or alphabetically.",
248
+ "species-tab-sort-radio-label": "Sort by",
249
+ "species-tab-sort-radio-option-alphabetically": "alphabetically",
250
+ "species-tab-sort-radio-option-frequency": "frequency",
251
+ "species-tab-start-button-label": "Generate species list",
252
+ "species-tab-title": "Species",
253
+ "training-tab-audio-speed-slider-info": "Nуgative values slow down, positive values speed up. -10 equals 10x decrease, 10 equals 10x increase. 1.0 equals no change.",
254
+ "training-tab-audio-speed-slider-label": "Audio speed modification",
255
+ "training-tab-autotune-checkbox-info": "Searches for the best hyperparameters, but takes more time.",
256
+ "training-tab-autotune-checkbox-label": "Use autotune",
257
+ "training-tab-autotune-executions-number-info": "The number of times a training run with a set of hyperparameters is repeated during hyperparameter tuning (this reduces the variance).",
258
+ "training-tab-autotune-executions-number-label": "Executions per trial",
259
+ "training-tab-autotune-trials-number-info": "Number of training runs for hyperparameter tuning.",
260
+ "training-tab-autotune-trials-number-label": "Trials",
261
+ "training-tab-batchsize-number-info": "Number of samples to process in a batch.",
262
+ "training-tab-batchsize-number-label": "Batch size",
263
+ "training-tab-cache-file-name-textbox-info": "The name of the cache file.",
264
+ "training-tab-cache-mode-radio-info": "Adjust how to cache training data. Select 'none' for no caching, 'load' to load from file, and 'save' to save the compressed training data.",
265
+ "training-tab-cache-mode-radio-label": "Training data cache mode",
266
+ "training-tab-cache-mode-radio-option-load": "load",
267
+ "training-tab-cache-mode-radio-option-none": "none",
268
+ "training-tab-cache-mode-radio-option-save": "save",
269
+ "training-tab-cache-select-directory-button-label": "Select the cache file directory",
270
+ "training-tab-cache-select-file-button-label": "Select cache file location",
271
+ "training-tab-classes-dataframe-column-classes-header": "Classes",
272
+ "training-tab-classifier-textbox-info": "The name of the new classifier.",
273
+ "training-tab-crop-mode-radio-info": "Adjust how to crop samples that are longer than the model input.",
274
+ "training-tab-crop-mode-radio-label": "Crop mode",
275
+ "training-tab-crop-mode-radio-option-center": "center",
276
+ "training-tab-crop-mode-radio-option-first": "first",
277
+ "training-tab-crop-mode-radio-option-segments": "segments",
278
+ "training-tab-crop-mode-radio-option-smart": "smart",
279
+ "training-tab-crop-overlap-number-info": "Adjust the overlap of training samples.",
280
+ "training-tab-crop-overlap-number-label": "Crop segment overlap (s)",
281
+ "training-tab-dropout-number-info": "Higher values may help prevent overfitting.",
282
+ "training-tab-dropout-number-label": "Dropout rate",
283
+ "training-tab-early-stoppage-msg": "Stopped early - validation metric not improving.",
284
+ "training-tab-epochs-number-info": "Number of training epochs.",
285
+ "training-tab-epochs-number-label": "Epochs",
286
+ "training-tab-focal-loss-alpha-slider-info": "Balancing parameter. Controls weight between positive and negative examples (recommended value 0.25).",
287
+ "training-tab-focal-loss-alpha-slider-label": "Focal loss alpha",
288
+ "training-tab-focal-loss-gamma-slider-info": "Focusing parameter. Higher values give more weight to hard examples (recommended value 2.0).",
289
+ "training-tab-focal-loss-gamma-slider-label": "Focal loss gamma",
290
+ "training-tab-hiddenunits-number-info": "Number of hidden units. If set to >0, a two-layer classifier is used.",
291
+ "training-tab-hiddenunits-number-label": "Hidden units",
292
+ "training-tab-input-selection-button-label": "Select training data",
293
+ "training-tab-learningrate-number-info": "Learning rate for the optimizer.",
294
+ "training-tab-learningrate-number-label": "Learning rate",
295
+ "training-tab-model-save-mode-radio-info": "'replace' will overwrite the original classification layer, leaving only the trained classes, and 'append' will combine the original classification layer with the new one.",
296
+ "training-tab-model-save-mode-radio-label": "Model save mode",
297
+ "training-tab-model-save-mode-radio-option-append": "append",
298
+ "training-tab-model-save-mode-radio-option-replace": "replace",
299
+ "training-tab-output-format-both": "both",
300
+ "training-tab-output-format-radio-info": "Format of the trained classifier.",
301
+ "training-tab-output-format-radio-label": "Model output format",
302
+ "training-tab-select-output-button-label": "Select classifier output",
303
+ "training-tab-start-training-button-label": "Start training",
304
+ "training-tab-test-data-selection-button-label": "Select test data (optional)",
305
+ "training-tab-title": "Train",
306
+ "training-tab-upsampling-radio-info": "Balance train data by upsampling minority classes.",
307
+ "training-tab-upsampling-radio-label": "Upsampling mode",
308
+ "training-tab-upsampling-radio-option-linear": "linear",
309
+ "training-tab-upsampling-radio-option-mean": "mean",
310
+ "training-tab-upsampling-radio-option-repeat": "repeat",
311
+ "training-tab-upsampling-ratio-slider-info": "The minimum ratio for a minority class compared to the majority class after upsampling.",
312
+ "training-tab-upsampling-ratio-slider-label": "Upsampling ratio",
313
+ "training-tab-use-focal-loss-checkbox-info": "Uses focal loss during training. This gives more weight to hard examples and helps handle class imbalance.",
314
+ "training-tab-use-focal-loss-checkbox-label": "Use focal loss",
315
+ "training-tab-use-labelsmoothing-checkbox-info": "Applies label smoothing during training. This can help improve model generalization by preventing the model from becoming too confident.",
316
+ "training-tab-use-labelsmoothing-checkbox-label": "Use label smoothing",
317
+ "training-tab-use-mixup-checkbox-info": "Applies mixup augmentation during training. This can help improve model generalization by creating new training samples through linear interpolation.",
318
+ "training-tab-use-mixup-checkbox-label": "Use mixup",
319
+ "validation-no-audio-directory-selected": "No audio directory selected",
320
+ "validation-no-audio-files-found": "No audio files found.",
321
+ "validation-no-custom-classifier-selected": "No custom classifier selected.",
322
+ "validation-no-directory-for-classifier-selected": "Please select a directory for the classifier.",
323
+ "validation-no-directory-selected": "Please select a directory.",
324
+ "validation-no-file-selected": "Please select a file.",
325
+ "validation-no-negative-samples-in-binary-classification": "Negative labels can't be used with binary classification",
326
+ "validation-no-species-list-selected": "Please select a species list.",
327
+ "validation-no-training-data-selected": "Please select your training data.",
328
+ "validation-no-valid-batch-size": "Please enter a valid batch size.",
329
+ "validation-no-valid-classifier-name": "Please enter a valid name for the classifier.",
330
+ "validation-no-valid-epoch-number": "Please enter a valid number of epochs.",
331
+ "validation-no-valid-frequency": "Please enter a valid frequency in",
332
+ "validation-no-valid-learning-rate": "Please enter a valid learning rate.",
333
+ "validation-non-event-samples-required-in-binary-classification": "Non-event samples are required for binary classification",
334
+ "validation-only-repeat-upsampling-for-multi-label": "Only repeat-upsampling is available for multi-label"
335
335
  }