-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[WIP][DO NOT MERGE] Matrixnet #1328
base: master
Are you sure you want to change the base?
Conversation
visually the pr looks good, do you have any clue where could be the problem? |
eval_metric.update(det_bboxes, det_ids, det_scores, gt_bboxes, gt_ids, gt_difficults) | ||
return eval_metric.get() |
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.
I didn't save the errror message. I remember the error message started roughly from these lines and was related to data type. The error message was something like 'float64 is not supported in pycocotools'. I was confused about the error because I didn't think I use the data type mentioned. Maybe can run the code to reproduce the bug.
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.
it seems to be an issue with latest numpy that breaks pycocotools. Maybe related: facebookresearch/detectron2#580
Object detector using matrix layers to extract features and heads of CenterNet to predict. Something is wrong with the code cause bug happens during validation.