Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- pytorch
|
| 5 |
+
- object-detection
|
| 6 |
+
- yolo
|
| 7 |
+
- computer-vision
|
| 8 |
+
- aircraft-detection
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# WingID
|
| 12 |
+
|
| 13 |
+
## Model Description
|
| 14 |
+
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.
|
| 15 |
+
|
| 16 |
+
## Model Architecture
|
| 17 |
+
- **Base Model**: YOLO11l (Large variant)
|
| 18 |
+
- **Framework**: PyTorch / Ultralytics
|
| 19 |
+
- **Task**: Object Detection
|
| 20 |
+
- **Input**: RGB images / video frames
|
| 21 |
+
|
| 22 |
+
## Training Details
|
| 23 |
+
- **Approach**: Fine-tuned YOLO11l on a curated dataset of aircraft and bird images
|
| 24 |
+
- **Augmentations**: Mosaic, random flip, scale jitter, HSV augmentation
|
| 25 |
+
- **Optimizer**: SGD / AdamW with cosine LR scheduling
|
| 26 |
+
|
| 27 |
+
## Performance
|
| 28 |
+
Achieves high mAP on the validation set for aircraft and bird detection across multiple classes.
|
| 29 |
+
|
| 30 |
+
## Files
|
| 31 |
+
| File | Description |
|
| 32 |
+
|------|-------------|
|
| 33 |
+
| `yolo11l.pt` | Fine-tuned YOLO11l model weights |
|
| 34 |
+
|
| 35 |
+
## Usage
|
| 36 |
+
|
| 37 |
+
```python
|
| 38 |
+
from ultralytics import YOLO
|
| 39 |
+
from huggingface_hub import hf_hub_download
|
| 40 |
+
|
| 41 |
+
# Download model
|
| 42 |
+
model_path = hf_hub_download(repo_id='devanshty/WingID', filename='yolo11l.pt')
|
| 43 |
+
|
| 44 |
+
# Load model
|
| 45 |
+
model = YOLO(model_path)
|
| 46 |
+
|
| 47 |
+
# Run inference
|
| 48 |
+
results = model('aircraft_image.jpg')
|
| 49 |
+
results[0].show()
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## Download & Use
|
| 53 |
+
|
| 54 |
+
```python
|
| 55 |
+
from huggingface_hub import hf_hub_download
|
| 56 |
+
model_path = hf_hub_download(repo_id='devanshty/WingID', filename='yolo11l.pt')
|
| 57 |
+
```
|