-
Notifications
You must be signed in to change notification settings - Fork 37
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
log_image
: log bounding boxes
#766
Comments
May need to consider whether it's necessary to list the universe of labels somewhere or if it's fine to parse them as the set of all individual labels. |
I'm not 100% sure this is the right place for my first discussion on a feature.
Feel free to tell me if I should have done this discussion differently or elsewhere. I'll act accordingly. |
Great feedback @AlexandreKempf! Let's go with your suggestions here. @mattseddon and @julieg18 have been working on this functionality, and you could work with them on getting this implemented. @AlexandreKempf is our newest ML product engineer who just joined the team. |
@AlexandreKempf, great suggestions on this feature! Feel free to take a look at iterative/vscode-dvc#5227 if you'd like to give any feedback on the plots' current design and reach out if you have any questions about VSCode's or Studio's side of things. |
TODO list for this project:
|
Related: iterative/dvc#10198, iterative/vscode-dvc#4917
We need a way to log bounding boxes (and maybe later other annotations like segmentation masks) for images saved with dvclive.
p1
The API can look like this:
In addition to saving the image to
dvclive/plots/images/myimg.png
, this will also save annotations todvclive/plots/images/myimg.json
in the following format:p2:
"scores": {"acc": 0.9, "loss": 0.05}
) so that users can filter boxes based on thresholds (only show boxes whereacc > 0.8
)The text was updated successfully, but these errors were encountered: