File size: 1,136 Bytes
2a4b34f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
base_model: ultralytics/yolov8n-cls
tags:
- ultralytics
- yolo
- vision
- image-classification
- pytorch
- insects
- pollinators
- biodiversity
- ecology
- conservation
datasets:
- custom
language:
- en
metrics:
- accuracy
model-index:
- name: pollinator-classifier
  results:
  - task:
      type: image-classification
      name: Image Classification
    dataset:
      name: Custom Pollinator Insects Dataset
      type: custom
    metrics:
    - type: accuracy
      value: 0.9207
      name: Top-1 Accuracy
    - type: accuracy
      value: 0.9912
      name: Top-5 Accuracy
pipeline_tag: image-classification
---

# Pollinator Insect Classifier 🔬

High-precision classifier for 10 pollinator insect species using YOLOv8 Nano with **92.07% accuracy**.

## Quick Start

```python
from ultralytics import YOLO
from huggingface_hub import hf_hub_download

# Download model
model_path = hf_hub_download("leonelgv/pollinator-classifier", "yolo8n.pt")

# Load and predict
model = YOLO(model_path)
results = model("insect_image.jpg")
```

See files in this repository for complete usage examples and training details.