ColCar Vision β€” Vehicle Inspection Models

This repository hosts the three vision models that power ColCar (Car-Inspector), an agent that assists with vehicle inspections, feeding a Colombian RTM compliance RAG and pricing engine.

All three models are built with Ultralytics YOLO (YOLOv11 and YOLOv8). Full credit to Ultralytics for the open YOLO architecture and training tooling.

Models

1. Damage Segmentation (YOLOv11-medium, instance segmentation)

colcar-damage-seg.{pt,onnx}

2. Car Parts Segmentation (YOLOv11-medium, instance segmentation)

colcar-parts-seg.{pt,onnx}

3. Tyre Defect Detection (YOLOv8-medium, object detection)

colcar-tyre-defect-det.{pt,onnx}

  • Classes: Good, Bulge, Cracks, Flat spots, Pitting, Puncture
  • Training data: Tyre defect detection, Roboflow Universe, CC BY 4.0

Usage

ONNX Runtime (inference only)

```python import onnxruntime as ort

session = ort.InferenceSession("colcar-damage-seg.onnx") outputs = session.run(None, {"images": input_tensor}) ```

Ultralytics (.pt β€” inference or further training)

```python from ultralytics import YOLO

model = YOLO("colcar-damage-seg.pt") results = model.predict("car_photo.jpg") ```

License

Released under AGPL-3.0, in line with the Ultralytics YOLO license these models were trained with (no Enterprise license was purchased).

Related

  • Project repo: https://github.com/BeauBryanDev/colcar
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for beaunix/colcar-vision

Quantized
(101)
this model