mitbersh/car-damage-segmentation-yolo
Viewer • Updated • 8.74k • 62
Модель для сегментации повреждений автомобиля на изображении. Часть проекта AutoInspect.
Сегментация повреждений автомобиля.
Модель построена на YOLO26-m. Основные параметры:
8966Модель обучалась в Kaggle-ноутбуке.
pip install -U ultralytics huggingface_hub
from huggingface_hub import hf_hub_download
from ultralytics import YOLO
repo_id = "mitbersh/car-damage-segmentation"
weights_path = hf_hub_download(
repo_id=repo_id,
filename="damage_segmentation.pt"
)
model = YOLO(weights_path)
results = model.predict(
source="path/to/car_image.jpg",
imgsz=896,
conf=0.25,
save=True
)
print(results)
yolo segment predict \
model=damage_segmentation.pt \
source=path/to/car_image.jpg \
imgsz=896 \
conf=0.25 \
save=True
Base model
Ultralytics/YOLO26