birdnet-analyzer 2.0.0__py3-none-any.whl → 2.1.0__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 (123) hide show
  1. birdnet_analyzer/__init__.py +9 -8
  2. birdnet_analyzer/analyze/__init__.py +19 -5
  3. birdnet_analyzer/analyze/__main__.py +3 -4
  4. birdnet_analyzer/analyze/cli.py +30 -25
  5. birdnet_analyzer/analyze/core.py +246 -245
  6. birdnet_analyzer/analyze/utils.py +694 -701
  7. birdnet_analyzer/audio.py +368 -372
  8. birdnet_analyzer/cli.py +732 -707
  9. birdnet_analyzer/config.py +243 -242
  10. birdnet_analyzer/eBird_taxonomy_codes_2024E.json +13046 -0
  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 +70 -70
  15. birdnet_analyzer/embeddings/utils.py +220 -193
  16. birdnet_analyzer/evaluation/__init__.py +189 -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 +364 -0
  21. birdnet_analyzer/evaluation/assessment/plotting.py +378 -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 +179 -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 +36 -28
  33. birdnet_analyzer/gui/assets/gui.js +93 -93
  34. birdnet_analyzer/gui/embeddings.py +638 -620
  35. birdnet_analyzer/gui/evaluation.py +801 -813
  36. birdnet_analyzer/gui/localization.py +75 -68
  37. birdnet_analyzer/gui/multi_file.py +265 -246
  38. birdnet_analyzer/gui/review.py +472 -527
  39. birdnet_analyzer/gui/segments.py +191 -191
  40. birdnet_analyzer/gui/settings.py +149 -129
  41. birdnet_analyzer/gui/single_file.py +264 -269
  42. birdnet_analyzer/gui/species.py +95 -95
  43. birdnet_analyzer/gui/train.py +687 -698
  44. birdnet_analyzer/gui/utils.py +797 -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 +341 -334
  83. birdnet_analyzer/lang/en.json +341 -334
  84. birdnet_analyzer/lang/fi.json +341 -334
  85. birdnet_analyzer/lang/fr.json +341 -334
  86. birdnet_analyzer/lang/id.json +341 -334
  87. birdnet_analyzer/lang/pt-br.json +341 -334
  88. birdnet_analyzer/lang/ru.json +341 -334
  89. birdnet_analyzer/lang/se.json +341 -334
  90. birdnet_analyzer/lang/tlh.json +341 -334
  91. birdnet_analyzer/lang/zh_TW.json +341 -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 +425 -419
  116. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.1.0.dist-info}/METADATA +146 -129
  117. birdnet_analyzer-2.1.0.dist-info/RECORD +125 -0
  118. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.1.0.dist-info}/WHEEL +1 -1
  119. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.1.0.dist-info}/licenses/LICENSE +18 -18
  120. birdnet_analyzer/eBird_taxonomy_codes_2021E.json +0 -25280
  121. birdnet_analyzer-2.0.0.dist-info/RECORD +0 -117
  122. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.1.0.dist-info}/entry_points.txt +0 -0
  123. {birdnet_analyzer-2.0.0.dist-info → birdnet_analyzer-2.1.0.dist-info}/top_level.txt +0 -0
@@ -1,117 +0,0 @@
1
- birdnet_analyzer/__init__.py,sha256=WsMrm408vRGSfIRw7h86j24HxFa3QoVdegqtUIPVX6g,351
2
- birdnet_analyzer/audio.py,sha256=SWppZOtAiAKdcYRq1EHch-f_5MS-oE77Mtjbzp-84XE,12235
3
- birdnet_analyzer/cli.py,sha256=L3Kt0GrT3XculgDyydTqT6GLxA8RnJjdt_PVhqzXYBA,28612
4
- birdnet_analyzer/config.py,sha256=l_uiug-qw5aFNCw26yC-Qwud1ILSWv02GyBySwNVTws,7321
5
- birdnet_analyzer/eBird_taxonomy_codes_2021E.json,sha256=kIBr4hpGTfjfLsGKEH2-DZLCqnJzEUKvuh52GTySRnQ,1419914
6
- birdnet_analyzer/model.py,sha256=F7pL2LBJdecnjGT4O-ONNkunh5i3r8puNOqZmrHEC5c,40878
7
- birdnet_analyzer/translate.py,sha256=bhWe28Zdh5gk0q8r7o-I5DwdK-CihzXu1_j1__gjags,2957
8
- birdnet_analyzer/utils.py,sha256=m1go-dvd1okpGV8obY9UtoDCOZItW7bP4UTrh0wf584,13745
9
- birdnet_analyzer/analyze/__init__.py,sha256=g31wRy6kGHZMVEL5wg_OFlpva62ivhmguCK1hBJWlzA,80
10
- birdnet_analyzer/analyze/__main__.py,sha256=Rrgxc7k-UvoddimiDbCdM5hJtw7ROOFKAvW1BnztobA,55
11
- birdnet_analyzer/analyze/cli.py,sha256=JLVG3k9VRQ38a2UyzwPwtLtQMO8rSbRP6EHxxAxCgB0,525
12
- birdnet_analyzer/analyze/core.py,sha256=JVCo8PCzD2hGsCjEQXJ_Qb5zCtokPExj8dtsXkYJweE,9221
13
- birdnet_analyzer/analyze/utils.py,sha256=rNT73HVn89ZHvmXzmWM8yQXXH4b3cz04d6EQQGuDpTc,24633
14
- birdnet_analyzer/embeddings/__init__.py,sha256=b_FjCW4p8j1Lg1pT9OsZG3jtgM1xlTUDJkXmpUM5264,83
15
- birdnet_analyzer/embeddings/__main__.py,sha256=cs18y96boZ1UKyXGHFY-98_r-FTuhjiRjZ8jkm_hDLg,56
16
- birdnet_analyzer/embeddings/cli.py,sha256=tTPsva1Nx-_RwCX_P7N3ggH6G8ROfKJbMHd4skrw9-c,273
17
- birdnet_analyzer/embeddings/core.py,sha256=I9UgjL1EOreN6DTs2t9oTGSqNY5D5bKcUF4zzV75VZM,2712
18
- birdnet_analyzer/embeddings/utils.py,sha256=6zrtpRv1du7fFLN9uyGWliZZXUaStoQe38Ao_DyJTCY,6157
19
- birdnet_analyzer/evaluation/__init__.py,sha256=ii5VcftAFx3lgQMCB4yUuomT1BiBmiyQxi5tV6Yytl8,8676
20
- birdnet_analyzer/evaluation/__main__.py,sha256=AsAw3vLt1cvt97ziBIP1iCH1QZsJz7RGzFxeqBZBVTk,53
21
- birdnet_analyzer/gui/__init__.py,sha256=pdXUULAF3zYnHr43IfY5dFeGtGq_mrBN10T1fkIfjwI,833
22
- birdnet_analyzer/gui/__main__.py,sha256=DJqgjkKxZczhR2VoepRXGIowshGKjXeAoDZ9Ldqf2Fk,46
23
- birdnet_analyzer/gui/analysis.py,sha256=qvkd2qdJ19ukA2oucyUCKhQfOs-f9MPSlKmmbdX7Uzk,6162
24
- birdnet_analyzer/gui/embeddings.py,sha256=I1AMU_mZAuEFq9RbBnWz-bzfvVa0H8Ls4tvJxQoxPLc,24578
25
- birdnet_analyzer/gui/evaluation.py,sha256=fUOhQt3B52UBS7K1ENtTTHiyLJZUalbyDhdX8gnuV9U,34572
26
- birdnet_analyzer/gui/localization.py,sha256=hfeBQsv_0r1TRADD5ReyhFIIj9J8zTPzdGDh6baehO4,2311
27
- birdnet_analyzer/gui/multi_file.py,sha256=N6eQP7f4rj2swbMB2yRYlHPyfa0hl3lRAcFgCzR-22c,8094
28
- birdnet_analyzer/gui/review.py,sha256=U1MINUlZuhLF2zPdOCNskgWAWpd7yJTcvpPHDQR1h2w,20297
29
- birdnet_analyzer/gui/segments.py,sha256=ETUm4ZDK7352c-dE-K9xsPZ3PajxmbNAMnkP-tEdHpk,7095
30
- birdnet_analyzer/gui/settings.py,sha256=rxDV2Xiwr1TpeVdunHmAqkNYXyqJ8GNGuYHa6kB1R0s,4050
31
- birdnet_analyzer/gui/single_file.py,sha256=eA0a9-DT-PaoyEUmwbVMBYml8aDKFbJRfcZi0RtvZHo,8815
32
- birdnet_analyzer/gui/species.py,sha256=bQef7eksdy7mxbQyZ0pLrvzutnRKT987h90gJbCLAIw,3045
33
- birdnet_analyzer/gui/train.py,sha256=WL-TofrE63e6RAgY6XKG5MzOt_SAADE60942u4b-jVE,27736
34
- birdnet_analyzer/gui/utils.py,sha256=gSOwOQmtDmheaZjIbaVNUS8vEsdfzipS-4xx5SJRs10,29268
35
- birdnet_analyzer/gui/assets/arrow_down.svg,sha256=2fCEyUwf3IOHWRPXnTcdR5Tm1HhOtXLbOWlYORv_ZWQ,270
36
- birdnet_analyzer/gui/assets/arrow_left.svg,sha256=pHyh9nAgjAXFB7ybSLyVI6zygYeJqjgPj95Q3oa6S0g,270
37
- birdnet_analyzer/gui/assets/arrow_right.svg,sha256=pUux1bnO_xWXuYDEYzoC0_n5fjE38BuK_pvkt85t71Q,270
38
- birdnet_analyzer/gui/assets/arrow_up.svg,sha256=CSgm3QzzeThlCxLToc1S6Y5DGQekxMsli5BAqfPhmdM,270
39
- birdnet_analyzer/gui/assets/gui.css,sha256=glAsx7GBj-YBYPsBddcCUv9z59ZIjLu8d-t27uEsEJY,485
40
- birdnet_analyzer/gui/assets/gui.js,sha256=SxBEErqiwhjUBKgBbCuwLT0aDL9Zgvd5SG6Y-b7T4Ck,3634
41
- birdnet_analyzer/gui/assets/img/birdnet-icon.ico,sha256=JUx5NGWVerz16p38WkYJeu3C6JO0Hx5uTOqMA-Suedg,24985
42
- birdnet_analyzer/gui/assets/img/birdnet_logo.png,sha256=yPMHuNBiHil_sZ476ntAKByc8lV03Fxdl2llxmVvCt4,24526
43
- birdnet_analyzer/gui/assets/img/birdnet_logo_no_transparent.png,sha256=uLZ3QAHAMUXLlgf7fh1VYGjDnK8Jo8sOx2cqLn04fwo,21538
44
- birdnet_analyzer/gui/assets/img/clo-logo-bird.svg,sha256=6v_ODxVyO5hMPzJuSGrVWQuwmGy75quU8tyYadm8TpA,1844
45
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_af.txt,sha256=s9OSWuBKzFFLAGYfmBtfcUrI51D4Pwc4l5fMu88Z9-Y,258587
46
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ar.txt,sha256=GVW-fTEIVd-NDXBfA9IDyhIVDFLn4UyWEwydIjznz0U,264925
47
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_bg.txt,sha256=MslruFWz9XskuLiKfeJZ5O8QX9YLOZm2XjnNPCjBeXU,282342
48
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ca.txt,sha256=WCFOMto5ySgJH5YMs9EtAtm6d7I5X2mIQ6OR2N8ZBjM,262496
49
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_cs.txt,sha256=VAYxrDE0lJQZmEaccX4avQfcfgvnhSq_tW0k2ZPfm20,262427
50
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_da.txt,sha256=Sm71oyC3cJ0bYAK_GvC77bTsJB2vsFAD7JZj8NjwBCY,257578
51
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_de.txt,sha256=V8HK1SIeoS2ZPnYnSy10qWWhQ4k9lrosNHOzsGAEe4Q,252243
52
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_el.txt,sha256=d2ax0DFHe4b-jRfnQgPpp5R_br68PDn2sh2EbXXBEcM,273157
53
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_en_uk.txt,sha256=SHk3tq0TK4UGIVUjIJqHuGrcnc6OXtMEjOkmgYnd3T0,259894
54
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_es.txt,sha256=HF-hXI33v8Ms54OnOKh9S0REW1nvjE1w8F9bFZyZbak,256846
55
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fi.txt,sha256=ZGaenUEkOJARjAOpoZLuX7eYa1mymz7zxeqpVfzeLaU,243634
56
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_fr.txt,sha256=45IoFZnUorMx5EcbzngzE-ukxpFQx7T_T0TfMFiA5rM,260569
57
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_he.txt,sha256=Yhw3tJeep2YAK-uY9cWxsa8Irvyfx9OKcEnrK--3CwE,265594
58
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hr.txt,sha256=wzCL0-4CD-Z3SE6t_Cx2GpkKe0SUXtC3vfdJ0MG2SxU,259263
59
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_hu.txt,sha256=L9qSnG5ixgMTDiRYaaEIsZ0a_LdNaIFLQkwUHu5uZZU,260045
60
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_in.txt,sha256=0WHYKuqMDSwvB__zAJVLWT2thzg-RyQzZNWAvC_QiB8,257235
61
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_is.txt,sha256=gmMDt6dnvDBvDZgEmhEFZokROduBUwediV5TnmKP64Y,248847
62
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_it.txt,sha256=HLJ4q3wHiDrjFLk2KM1r2xWplgVCCoZnmbdW_HbsD5c,259823
63
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ja.txt,sha256=FYxTYGdtf8FUuV7X8WHPhFvpyiGaZ5YJAUY93YcLY2I,310145
64
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ko.txt,sha256=HKGMzRETng2yoOnuUVQrZyFFYLj16uGtemGodnILXmA,259315
65
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_lt.txt,sha256=eX08gla8rCdqWVxP2lsmawXxiE9_33iQusfDba_-FOo,262650
66
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ml.txt,sha256=Vzvb-vEVvbrJHX2C1a2awmAr8110xhHt0zAn56fMBjc,273073
67
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_nl.txt,sha256=--61TdEmuzUptBOqmttrYFeFUyuvGG15Ra8FH1WUPsc,249498
68
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_no.txt,sha256=2yOKOn7Xwk-f4N8L3OB8FgWVcxXou4PleHgxvca_XNQ,229423
69
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pl.txt,sha256=zSzQRM0blPNjEzlbPiiUCNnbETtkGQHAyq3Z1TeTH2s,262289
70
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_BR.txt,sha256=dDm82dw5S68bAKZMJHy4DVELxzdgG5RmCLQbXfrLxmQ,260234
71
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_pt_PT.txt,sha256=5JMpaQA9E-7Pf3ohS_B8gh9r0ntd--gUUol04WwZ6y4,259267
72
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ro.txt,sha256=V2eqdJ4e-F9ov5ZMBQZdKhlgN08-bT2Y9hPEF_q5lg0,261825
73
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_ru.txt,sha256=hMXy934AhEogTKO4jrnYBo0u_F-12nF-NgzUtEEW2Iw,371255
74
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sk.txt,sha256=x4DfTKz_emyRhMhB845p6biWxQBUvH0nnlBJhB45y1U,263237
75
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sl.txt,sha256=ChqWgPapSNovzaS7DYlJdtv95tbSrwcXU_MkNjeClKI,258825
76
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sr.txt,sha256=NBrRaR_jwureXFjvJcRXCW6jWrDjsjy8WT_MONZtRBA,267044
77
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_sv.txt,sha256=GX_pIGOZfAXgYCFQ7Tv0pwBp2uRGJD7Yq7v59LGA0WA,250585
78
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_th.txt,sha256=7iIENS7RcWp_UnNmQQXcmQVFoF3uQmnWA5s-qnGuWlE,288421
79
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_tr.txt,sha256=FInxZFtUCRsdSX2RrVMJmW-8N9PqkY4TUNO0uh_maLE,274345
80
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_uk.txt,sha256=Pz-ND7r1sZRjru7DcpfeKwveF8kfnidC1K5wuJlXwUE,367971
81
- birdnet_analyzer/labels/V2.4/BirdNET_GLOBAL_6K_V2.4_Labels_zh.txt,sha256=d3-eD5xZ7GZGuIf-QzlnJYgBTsKKSlVEx6WiG4gXkIY,224099
82
- birdnet_analyzer/lang/de.json,sha256=s5OOuVB9WcFokKkL3i4VELx2E0-V73EUj84-cS0cd8g,28356
83
- birdnet_analyzer/lang/en.json,sha256=R1w9kRIB_cEp__gSMSjvjhNuZGHP27n5k6E5cmyp_j8,26044
84
- birdnet_analyzer/lang/fi.json,sha256=jDkE0-jVC4xDyn3kyFsSlNQJAj8I4O7y_Z1MWF8IhQY,26884
85
- birdnet_analyzer/lang/fr.json,sha256=71WppVCiTBLjjZ5k5JqaE6JBlCv5Lz8gUzukEz7l-MU,29737
86
- birdnet_analyzer/lang/id.json,sha256=17eZsV5XXc4mLxWnxfTeRxdNXcqchtS41Zn8AQmbz9k,26842
87
- birdnet_analyzer/lang/pt-br.json,sha256=PJAYh_BlpCfQAXc_moEdHJag81RjLQUpsD65F6jsH1k,28464
88
- birdnet_analyzer/lang/ru.json,sha256=Q5lmBFU1jN4JTp5u5BVPMqwK2O_s5eIXQFfm5rkCvO0,37573
89
- birdnet_analyzer/lang/se.json,sha256=oUIKoeXprqt8S50FlUFsgrFTpjmETR-gKfvzp5AX6cA,26604
90
- birdnet_analyzer/lang/tlh.json,sha256=OaCQi7-8_DpHsrQCOzYSostw9-nyrFUQmUNL0rA-pJc,20850
91
- birdnet_analyzer/lang/zh_TW.json,sha256=MVoVF9AnxvRCdsIZS2M60PVbmpT1SvHFoLE0tR61aJE,25285
92
- birdnet_analyzer/search/__init__.py,sha256=gRKewsLYCa8hJxkXoFnp1uj_4ytWT1cve8KohBjHarc,70
93
- birdnet_analyzer/search/__main__.py,sha256=byePI8VG1KsbBWgcI9hMRaLWEKuqbnVQ7x3vQY3-400,52
94
- birdnet_analyzer/search/cli.py,sha256=qrjpaUFKTceX0RrkN4aARfXvwrU9Ld_CIwSUxRD06-A,252
95
- birdnet_analyzer/search/core.py,sha256=Autochi0lYVL8iZsSAeRxWuwxs8nLJm_H1SKdSRVgmk,3143
96
- birdnet_analyzer/search/utils.py,sha256=RYmbst3myc_d8kLDEcl6FjZbhTfjOS5B8_VfKPmoKLs,3747
97
- birdnet_analyzer/segments/__init__.py,sha256=F-ITPPhOaGGNTJzM7Fa1_HVi4vd3UxciRDTNy9exfKk,76
98
- birdnet_analyzer/segments/__main__.py,sha256=td8ngJ1IPLpj_m46XrZsp9qkIK9JprIrKsBLZArNWXU,54
99
- birdnet_analyzer/segments/cli.py,sha256=uax5cdvd0RNGojvzUYWVpKpMR2m2wHP1ltGPgcYs79I,293
100
- birdnet_analyzer/segments/core.py,sha256=yugZc-emhUDFmuJ3kEsCJRt5QdRCURhqtfWSRHVyWYI,2906
101
- birdnet_analyzer/segments/utils.py,sha256=y48403mdurWqrGEkYSl_BiM5WMXpUWBxowHdywe4-1I,14082
102
- birdnet_analyzer/species/__init__.py,sha256=HoKtymO-t4hwDLhEmiKyr6hYITi_kkzOKzqZJxcYX_o,73
103
- birdnet_analyzer/species/__main__.py,sha256=7MxULV0ZdeM5k7uhMY5zDStTDdlrnt91G5OSwOL4nJU,53
104
- birdnet_analyzer/species/cli.py,sha256=CPZmojdFFIYyykD-QrurZPT1J5MD5p7kwWF3DK8EiHw,290
105
- birdnet_analyzer/species/core.py,sha256=MnZXTjelFkGzJDBR1GAnceFT9Vy-H46uFT-CeeGHkPE,1558
106
- birdnet_analyzer/species/utils.py,sha256=i5BC4Xf50aN8BQDEa4np1FIpkmu89FVsFNkF6q6J8_k,2598
107
- birdnet_analyzer/train/__init__.py,sha256=aVKnTzOsMhp92bLKwIrxXcoqKY6jAYXD79t0h0hGm30,67
108
- birdnet_analyzer/train/__main__.py,sha256=MGYLw9XQ9lCEs2Ns8Ro9yd2EVTzktbiaKMuaTkyjgKQ,51
109
- birdnet_analyzer/train/cli.py,sha256=hOmJev8lCF-F1XhpagH7I1mk0yyFr-ruelwP1DvuGiM,284
110
- birdnet_analyzer/train/core.py,sha256=kIOAyMxhbaqdLTytPzgXYx1atElLBpzFgJZDUYnvQ94,5642
111
- birdnet_analyzer/train/utils.py,sha256=ruQMaq9J8ApjdluN7uDe5vG15j6ylzfwoixyFVs8l84,35763
112
- birdnet_analyzer-2.0.0.dist-info/licenses/LICENSE,sha256=oj96wQMMaKj9tZZzGfcdLeLzgYQ1lzD45Pc2kQpXbGQ,1055
113
- birdnet_analyzer-2.0.0.dist-info/METADATA,sha256=A_BknVrU_AEC35OPjdc1IaAkHLdtBWjQWQxth11eBRY,6489
114
- birdnet_analyzer-2.0.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
115
- birdnet_analyzer-2.0.0.dist-info/entry_points.txt,sha256=zggnZKhifJ--I46o6EWvPrxCsLzyyDu7Df0zTjcsfJs,457
116
- birdnet_analyzer-2.0.0.dist-info/top_level.txt,sha256=A7Ss-Ce3vcccmpepTDG3jDrfwBakUDy99HclK4xlazg,17
117
- birdnet_analyzer-2.0.0.dist-info/RECORD,,