from ultralytics import YOLO
import matplotlib.pyplot as plt
model = YOLO("modelv8n_1.onnx")
<!-- model = YOLO("modelv8n_1.pt") -->
results = model("image.jpg")
results[0].show()
output_image = results[0].plot()
plt.imshow(output_image)
plt.axis("off")
plt.show()
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
🙋
Ask for provider support