YOLO26 MEDIUM Model
Fine-tuned YOLO26 model for object detection.
Model Details
- Architecture: YOLO26Medium
- Framework: Ultralytics YOLO26
- Resolution: 512x512
- Epochs: 100
- Batch Size: 8
Classes
car
Usage
from ultralytics import YOLO
from huggingface_hub import hf_hub_download
model_path = hf_hub_download(repo_id="rujutashashikanjoshi/yolo26-testH-vehicle-detection-4931_full-100m", filename="best.pt")
model = YOLO(model_path)
results = model("your_image.jpg", conf=0.31278749412881274)
results[0].show()
Training Config
{
"model_type": "medium",
"epochs": 100,
"batch_size": 8,
"image_size": 512,
"learning_rate": 0.0032401997265097643,
"weight_decay": 8.69432529672568e-05,
"momentum": 0.891983330406882,
"warmup_epochs": 10,
"workers": 2,
"patience": 10,
"save_period": 10,
"conf_threshold": 0.31278749412881274,
"iou_threshold": 0.549068998923672,
"output_dir": "./output/4139_full_y26_testH",
"optimizer": "AdamW"
}
License
AGPL-3.0
- Downloads last month
- 24