File size: 1,843 Bytes
1b7d359
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
license: cc-by-nc-nd-4.0
task_categories:
  - object-detection
  - image-classification
tags:
  - birds
  - bird-feeder
  - yolo
  - birdlense
  - wildlife
language:
  - en
size_categories:
  - n<1K
  - 1K<n<10K
  - 10K<n<100K
---

# BirdLense Annotations

Dataset of bird annotations from feeders for the [BirdLense Hub](https://github.com/Gfermoto/BirdLense-Hub) project — a bird feeder monitoring system with detection (YOLO, BirdNET).

## Description

Images of birds and squirrels captured by BirdLense cameras at feeders. Annotations in YOLO format (bounding boxes) for training and fine-tuning detection models. Data is collected by community members through confirming and correcting automatic detections.

## Dataset Structure

```
train/
  images/     # Training images
  labels/     # YOLO annotations (.txt)
val/
  images/
  labels/
data.yaml     # Class configuration and paths
```

## Classes

Species list is defined in `data.yaml`. Typical categories: birds (tits, sparrows, woodpeckers, etc.), squirrels, mice.

## Usage

### Download

```python
from huggingface_hub import snapshot_download

path = snapshot_download(
    repo_id="gfermoto/birdlense-annotations",
    repo_type="dataset",
    local_dir="./birdlense-data",
)
```

### YOLO Training

```bash
yolo detect train data=./birdlense-data/data.yaml model=yolov8n.pt epochs=100
```

## Data Source

- **BirdLense Hub** — open-source bird feeder monitoring system
- Detection: YOLO + BirdNET
- Labeling: user confirmation/correction in the UI

## License

[CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/) — attribution required, non-commercial, no derivatives without permission.

## Links

- [BirdLense Hub](https://github.com/Gfermoto/BirdLense-Hub)
- [BirdLense Documentation](https://github.com/Gfermoto/BirdLense-Hub/tree/main/docs)