# Load model directly
from transformers import Yolov8ForObjectDetection
model = Yolov8ForObjectDetection.from_pretrained("SpotLab/YOLOv8Detection", dtype="auto")Quick Links
README.md exists but content is empty.
- Downloads last month
- 270
# Load model directly
from transformers import Yolov8ForObjectDetection
model = Yolov8ForObjectDetection.from_pretrained("SpotLab/YOLOv8Detection", dtype="auto")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="SpotLab/YOLOv8Detection")