• Ultralytics
  • Home
  • Explore
Get Started
Train Ultralytics YOLO models, manage datasets, and deploy with one click.
  • Cloud training
  • Dataset management
  • One-click inference

For support, contact support@ultralytics.com.

By clicking continue, you agree to our Terms of Service and Privacy Policy.
  1. ajith-mohan
  2. strange-starling
  3. yolov8n

yolov8n

DetectPyTorchv8.0.0.dev0
Run Information
Training timing and environment details
Completed
Completed

Dec 30, 2022, 12:12 AM

Ultralytics

8.0.0.dev0

Documentation

https://docs.ultralytics.com

Inference Example
Use this trained model to run predictions on your images. Requires ultralytics>=8.4.5

First, set your API key as an environment variable to authenticate with Ultralytics Platform:

export ULTRALYTICS_API_KEY=your_api_key_here
from ultralytics import YOLO

# Load your trained model from Ultralytics Platform
model = YOLO("ajith-mohan/strange-starling/yolov8n")

# Run inference on an image
results = model("path/to/image.jpg")

# Process results
for result in results:
    boxes = result.boxes  # Bounding boxes
    result.show()  # Display annotated image

No training data available for this model