Downloads · 30 days
0
Hunjun/yolo-tank-detection
yolo-tank-detection is a object detection model from Hunjun. Use it when you need objects located in an image. The card lists the license as mit.
Military object detection models trained with Knowledge Distillation and Post-Training Quantization.
Downloads · 30 days
0
Access
Public
Updated Dec 1, 2025
Repo size
67.9 MB
Likes
1
Public
Click a slice to open those files.
.pt64.5 MB · 95%
From the Hugging Face model README
Military object detection models trained with Knowledge Distillation and Post-Training Quantization.
| Model | mAP50 | mAP50-95 | Size |
|---|---|---|---|
| Teacher (YOLOv8m) | 86.40% | 62.78% | 49.6 MB |
| Student Fine-tuned (YOLOv8n) | 84.61% | 60.64% | 5.96 MB |
| Student KD (YOLOv8n) | 79.28% | 53.38% | ~6 MB |
| Student Quantized (INT8) | 84.31% | 60.50% | 3.20 MB |
from huggingface_hub import hf_hub_download
# Download quantized model for web deployment
model_path = hf_hub_download(
repo_id="Hunjun/yolo-tank-detection",
filename="optimized/student_quantized.onnx"
)
# Or download teacher model
teacher_path = hf_hub_download(
repo_id="Hunjun/yolo-tank-detection",
filename="teacher/yolov8m_tank_best.pt"
)