-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
yolo_test #975
Comments
👋 Hello @gnoscerer, thank you for raising an issue about Ultralytics HUB 🚀! Please visit our HUB Docs to learn more:
If this is a 🐛 Bug Report, please provide screenshots and steps to reproduce your problem to help us investigate further. If this is a ❓ Question or feature request, please expand with additional details about your goals, environment, and specific requirements so that we can assist you better. An Ultralytics engineer will also review and assist with your inquiry shortly. Thank you for your patience! 😊 |
@gnoscerer hello there! 👋 It seems you're looking to improve the testing experience with YOLO. Could you clarify specifically what aspect of testing you'd like to enhance? For example, are you referring to:
If you're starting with testing pre-trained models, you can try out the Ultralytics HUB for a seamless, no-code experience. Simply upload your data, test models via our web interface, or use the mobile app for real-time object detection. You can learn more about getting started here: Quickstart Guide. For Python-based testing, here’s a quick example using the from ultralytics import YOLO
# Load a pre-trained YOLOv8 model
model = YOLO("yolov8n.pt")
# Run inference on an image
results = model("path/to/your_image.jpg")
results.show() # Display detected objects If you’re looking to validate your models, you can run: yolo val model=yolov8n.pt data=coco.yaml Let us know more about your use case, and we’ll be happy to guide you further! 🚀 |
Search before asking
Description
Make the test better.
Use case
I would like to test the yolo
Additional
No response
The text was updated successfully, but these errors were encountered: