Model characteristics

  • Tiled-based inference mode. Optimal input must be 640x640px. Batch-based inference is recommended.

Model Download and Inference

Install dependencies:

pip install ultralytics huggingface_hub

And then run the following code for a simple image inference. You can do the inference with either images or videos, following the Ultralytics convention.

from huggingface_hub import hf_hub_download
from ultralytics import YOLO

model_path = hf_hub_download(
    repo_id="jmartinpizarro/carlav26t",
    filename="carlav26t.pt"
)

model = YOLO(model_path)

# Perform object detection on an image
results = model("test.png")  # Predict on an image, assume 640x640 resolution
results[0].show()  # Display results
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for jmartinpizarro/carlav26t

Finetuned
(83)
this model