-
-
Notifications
You must be signed in to change notification settings - Fork 16.5k
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
Update wandb_utils.py #4953
Update wandb_utils.py #4953
Conversation
`is_valset_wandb_artifact` and `is_trainset_wandb_artifact` were referenced before assignment causing wandb to be unusable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👋 Hello @d57montes, thank you for submitting a 🚀 PR! To allow your work to be integrated as seamlessly as possible, we advise you to:
- ✅ Verify your PR is up-to-date with origin/master. If your PR is behind origin/master an automatic GitHub actions rebase may be attempted by including the /rebase command in a comment body, or by running the following code, replacing 'feature' with the name of your local branch:
git remote add upstream https://github.com/ultralytics/yolov5.git
git fetch upstream
git checkout feature # <----- replace 'feature' with local branch name
git merge upstream/master
git push -u origin -f
- ✅ Verify all Continuous Integration (CI) checks are passing.
- ✅ Reduce changes to the absolute minimum required for your bug fix or feature addition. "It is not daily increase but daily decrease, hack away the unessential. The closer to the source, the less wastage there is." -Bruce Lee
@d57montes thanks for the PR! @AyushExel can you review this? |
@d57montes Thanks for flagging this. I think line |
@glenn-jocher approved the changes |
@AyushExel thanks for the review! Yes |
@d57montes @AyushExel PR is merged. Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐ |
`is_valset_wandb_artifact` and `is_trainset_wandb_artifact` were referenced before assignment causing wandb to be unusable.
`is_valset_wandb_artifact` and `is_trainset_wandb_artifact` were referenced before assignment causing wandb to be unusable.
is_valset_wandb_artifact
andis_trainset_wandb_artifact
were referenced before assignment causing wandb to be unusable.🛠️ PR Summary
Made with ❤️ by Ultralytics Actions
🌟 Summary
Enhancement of Weights & Biases integration for dataset tracking.
📊 Key Changes
is_wandb_artifact
into two:is_trainset_wandb_artifact
andis_valset_wandb_artifact
.🎯 Purpose & Impact