File size: 1,493 Bytes
4ac9606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
tags:
  - pytorch
  - object-detection
  - yolo
  - computer-vision
  - aircraft-detection
---

# WingID

## Model Description
A YOLO11l model fine-tuned for aircraft and bird detection. WingID is a real-time visual identification system capable of detecting and classifying flying objects — including various aircraft types and bird species — from camera feeds or static images.

## Model Architecture
- **Base Model**: YOLO11l (Large variant)
- **Framework**: PyTorch / Ultralytics
- **Task**: Object Detection
- **Input**: RGB images / video frames

## Training Details
- **Approach**: Fine-tuned YOLO11l on a curated dataset of aircraft and bird images
- **Augmentations**: Mosaic, random flip, scale jitter, HSV augmentation
- **Optimizer**: SGD / AdamW with cosine LR scheduling

## Performance
Achieves high mAP on the validation set for aircraft and bird detection across multiple classes.

## Files
| File | Description |
|------|-------------|
| `yolo11l.pt` | Fine-tuned YOLO11l model weights |

## Usage

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

# Download model
model_path = hf_hub_download(repo_id='devanshty/WingID', filename='yolo11l.pt')

# Load model
model = YOLO(model_path)

# Run inference
results = model('aircraft_image.jpg')
results[0].show()
```

## Download & Use

```python
from huggingface_hub import hf_hub_download
model_path = hf_hub_download(repo_id='devanshty/WingID', filename='yolo11l.pt')
```