Updated README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pipeline_tag: object-detection
|
| 4 |
---
|
| 5 |
+
|
| 6 |
+
# Paper Model YOLO26 Fine-Tuned Weights
|
| 7 |
+
|
| 8 |
+
This repository contains RT_DETR weights fine-tuned on the synthetic dataset generated with the Paper Model project:
|
| 9 |
+
|
| 10 |
+
- GitHub: [Paper Model repository](https://github.com/frekkoz3/Paper-Model?utm_source=chatgpt.com)
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
|
| 14 |
+
```python
|
| 15 |
+
from huggingface_hub import hf_hub_download
|
| 16 |
+
|
| 17 |
+
weights_path = hf_hub_download(
|
| 18 |
+
repo_id="frekko/paper_model_yolo26",
|
| 19 |
+
filename="model_name.pt",
|
| 20 |
+
)
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
## Trained Models
|
| 24 |
+
|
| 25 |
+
| Model | Dataset Version | Resolution | Epochs | LR |
|
| 26 |
+
|---|---|---|---|---|
|
| 27 |
+
| `1024_0_v1_rt_detr` | V1 | 1024 | 40 | 0.001 |
|
| 28 |
+
| `1024_0_v2_rt_detr` | V2 | 1024 | 60 | 0.001 |
|
| 29 |
+
| `1024_1_v2_rt_detr` | V2 | 1024 | 60 | 1e-4 / 1e-5 |
|
| 30 |
+
| `1024_0_v3_rt_detr` | V3 | 1024 | 60 | 1e-4 / 1e-5 |
|
| 31 |
+
|
| 32 |
+
Dataset versions correspond to the synthetic dataset generator versions documented in the Paper Model repository:
|
| 33 |
+
|
| 34 |
+
- [Paper Model dataset version history](https://github.com/frekkoz3/Paper-Model)
|