-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Provide confusion matrix for the trained data #1043
Comments
👋 Hello @hanannazri, thank you for raising an issue about Ultralytics HUB 🚀! Please visit our HUB Docs to learn more:
It looks like you're requesting a feature to view a confusion matrix for trained data as well as additional API/model functionalities like the capability to visualize results in Google Colab and upload them to GitHub. This sounds like a great idea 🎉! While this feature isn't currently available, we value all suggestions that improve HUB. If this is a 🐛 Bug Report, please provide screenshots and steps to produce a minimum reproducible example (MRE) to better understand the issue. If this is a ❓ Question or Feature Request, please expand on the use case and specific details. For example:
Rest assured, this is an automated response 🤖, but an Ultralytics team member will follow up with personalized assistance soon. Thank you for your feedback and for helping improve Ultralytics HUB! 🚀 |
@hanannazri Hello! |
I think he probably wants the confusion matrix to be visible in the website for analysing the training and also download the results of the training process |
@gin721 thank you for clarifying! 🙌 While the Ultralytics HUB doesn't currently display confusion matrices in its web interface, you can easily generate and analyze them through these methods:
from ultralytics import YOLO
model = YOLO('yolov8n.pt') # Load your custom model
metrics = model.val() # Validation metrics dictionary
confusion_matrix = metrics.confusion_matrix # Raw matrix data For API access to your HUB models, you'll find the Model ID in the HUB interface under model details. We're continuously working to enhance our web visualization capabilities based on user feedback! Remember that all usage of Ultralytics models requires compliance with our AGPL-3.0 license or an Enterprise License for commercial use. |
Search before asking
Description
Provide confusion matrix for the trained data..also provide the api and model id ..so can see our trained result also in google colab and can be uploaded in github
Use case
No response
Additional
No response
The text was updated successfully, but these errors were encountered: