tphakala commited on
Commit
feff36b
·
verified ·
1 Parent(s): 8b0dca0

Add BirdNET Geomodel V3.0.2 ONNX FP16 with labels and taxonomy

Browse files
BirdNET+_Geomodel_V3.0.2_Global_12K_FP16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bc5a9b1e7c24115730015a97dbb688e9e8cd49c02c34a011439182c65ef0017
3
+ size 7483473
BirdNET+_Geomodel_V3.0.2_Global_12K_Labels.txt ADDED
The diff for this file is too large to render. See raw diff
 
MODEL_LICENSE.txt ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ BirdNET Geomodel - Model Weights License
2
+ ========================================
3
+
4
+ The trained model weights distributed with this project are licensed under
5
+ Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
6
+
7
+ You are free to:
8
+ - Share: copy and redistribute the material in any medium or format
9
+ - Adapt: remix, transform, and build upon the material for any purpose,
10
+ including commercially
11
+
12
+ Under the following terms:
13
+ - Attribution: You must give appropriate credit, provide a link to the
14
+ license, and indicate if changes were made.
15
+ - ShareAlike: If you remix, transform, or build upon the material, you
16
+ must distribute your contributions under the same license.
17
+
18
+ Full license text: https://creativecommons.org/licenses/by-sa/4.0/legalcode
19
+
20
+ PROHIBITED USES
21
+ ----------------
22
+ You must NOT use the model weights or any derivative:
23
+ 1. For POACHING, wildlife tracking intended to facilitate illegal capture,
24
+ harm, trade, or exploitation of species.
25
+ 2. For ANY MILITARY purpose, including surveillance, targeting, or
26
+ integration into defense systems.
27
+
28
+ ATTRIBUTION
29
+ -----------
30
+ Publications, presentations, or derived tools must attribute the use of
31
+ the model either through citation or acknowledgment (e.g., "Powered by
32
+ BirdNET").
33
+
34
+ NO WARRANTY
35
+ -----------
36
+ THE MODEL WEIGHTS ARE PROVIDED "AS IS" WITHOUT ANY WARRANTY (INCLUDING
37
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, OR
38
+ NON-INFRINGEMENT). USE AT YOUR OWN RISK.
39
+
40
+ Contact: stefan.kahl@cornell.edu
41
+ Project: https://github.com/birdnet-team/geomodel
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # BirdNET Geomodel V3.0.2
2
+
3
+ Geographic species occurrence model from the [BirdNET](https://birdnet.cornell.edu/) project. Predicts which species are likely at a given location and time of year.
4
+
5
+ This repository hosts the **ONNX FP16** variant for use by [BirdNET-Go](https://github.com/tphakala/birdnet-go) as an improved range filter for Google Perch v2 and BirdNET v3.0 classifiers.
6
+
7
+ ## Model Details
8
+
9
+ - **Version**: V3.0.2
10
+ - **Species**: 12,012 across 5 animal classes
11
+ - Birds: 11,157
12
+ - Mammals: 1,087
13
+ - Insects: 566
14
+ - Amphibians: 540
15
+ - Reptiles: 11
16
+ - **Input**: `[latitude, longitude, week]` as float32 (shape `[1, 3]`)
17
+ - Latitude: [-90, 90]
18
+ - Longitude: [-180, 180]
19
+ - Week: BirdNET 48-week year (1-48, 4 weeks per month)
20
+ - **Output**: 12,012 float32 species occurrence scores
21
+ - **Format**: ONNX, FP16 precision
22
+ - **Size**: 7.1 MB
23
+
24
+ ## Files
25
+
26
+ | File | Description | Size |
27
+ |------|-------------|------|
28
+ | `BirdNET+_Geomodel_V3.0.2_Global_12K_FP16.onnx` | Geomodel ONNX FP16 | 7.1 MB |
29
+ | `BirdNET+_Geomodel_V3.0.2_Global_12K_Labels.txt` | Species labels (12,012 entries) | 558 KB |
30
+ | `taxonomy.csv` | Full taxonomy with 30 languages (13,360 entries) | 8.7 MB |
31
+ | `MODEL_LICENSE.txt` | License terms | 1.5 KB |
32
+ | `SHA256SUMS` | File integrity checksums | 388 B |
33
+
34
+ ### Labels format
35
+
36
+ Tab-separated: `species_code`, `scientific_name`, `common_name`
37
+
38
+ ```
39
+ 1032549 Petaurista albiventer White-bellied Giant Flying Squirrel
40
+ zothaw Buteo albonotatus Zone-tailed Hawk
41
+ ```
42
+
43
+ Line number corresponds to model output index (line 1 = index 0).
44
+
45
+ ### Taxonomy CSV
46
+
47
+ 35 columns: index, scientific name, common name (English), species code, class, and 30 language-specific common names (German, Spanish, Polish, French, Dutch, Russian, Japanese, Czech, Catalan, Portuguese, Norwegian, Bulgarian, Swedish, Danish, Turkish, Slovak, Serbian, Ukrainian, Chinese, Finnish, and regional variants of Spanish, Portuguese, Croatian, Lithuanian, Farsi, Welsh, Estonian).
48
+
49
+ ## Source
50
+
51
+ Original model from [birdnet-team/geomodel v3.0.2](https://github.com/birdnet-team/geomodel/releases/tag/v3.0.2).
52
+
53
+ ## License
54
+
55
+ Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).
56
+
57
+ See `MODEL_LICENSE.txt` for full terms including prohibited uses (poaching, military applications).
58
+
59
+ Attribution: Powered by [BirdNET](https://birdnet.cornell.edu/).
60
+
61
+ ## Citation
62
+
63
+ If you use this model in publications or presentations, please cite:
64
+
65
+ > Powered by BirdNET (https://birdnet.cornell.edu/)
SHA256SUMS ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ 2bc5a9b1e7c24115730015a97dbb688e9e8cd49c02c34a011439182c65ef0017 BirdNET+_Geomodel_V3.0.2_Global_12K_FP16.onnx
2
+ c15818db07e55978d909a9bcd916cd0615b0183f789227d9516059151787c784 BirdNET+_Geomodel_V3.0.2_Global_12K_Labels.txt
3
+ 39c2f332863797c8e33d2c5dabcd7b4f7955a96869ce6e7506faac7ded75b1d4 MODEL_LICENSE.txt
4
+ 74e4b31d2f9c56fbd1a45d980591654f508c73fc4a153cab52f11367a078ddfd taxonomy.csv
taxonomy.csv ADDED
The diff for this file is too large to render. See raw diff