Skip to content
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

Check benchmark submissions for completeness #2433

Closed
stes opened this issue Nov 1, 2023 · 1 comment
Closed

Check benchmark submissions for completeness #2433

stes opened this issue Nov 1, 2023 · 1 comment
Assignees

Comments

@stes
Copy link
Collaborator

stes commented Nov 1, 2023

Is your feature request related to a problem? Please describe.

The deeplabcut benchmark scripts currently do not check if a submission is complete, e.g. if predictions for all test images are returned, as noted by @n-poulsen .

Describe the solution you'd like

A good solution would be to add a few lines to this part of the evaluation code, sth along the lines of

predictions = self.get_predictions(name)
self._validate_predictions(name)
...

def _validate_predictions(self, predictions):
  # check if predictions contains too many images not contained in the ground truth
  # check if predictions contains not all images in the ground truth
  # (other potential tests)
  pass
@MMathisLab
Copy link
Member

@n-poulsen is this completed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants