weights/best.pt - Best performing model weights (PyTorch)weights/best.onnx - ONNX format for cross-platform inferenceweights/last.pt - Last epoch model weightsweights/best.torchscript - TorchScript formatargs.yaml - Training configurationresults.csv - Training resultspython
from ultralytics import YOLO
# Load model
model = YOLO('best.pt')
# Predict
results = model('path/to/image.jpg')python
import onnxruntime as ort
# Load ONNX model
session = ort.InferenceSession('best.onnx')
# Run inference...