-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add propagate with bbox as option and add more metrics (Closes #11) #12
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
Conversation
- Added an Evaluator class to compute various segmentation metrics.. - Updated MedSAM3DInferenceConfig to include a list of evaluation metrics. - Adjusted the inference logic to utilize the new evaluation metrics for reporting results.
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.
Remove this
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.
?
| default=True, | ||
| description="Whether to propagate the mask with the bounding box.", | ||
| propagate_with_gt: bool = Field( | ||
| default=False, |
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.
Set this to True
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.
This is using the ground truth not bbox
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.
Do we save out enough details to run the evaluator without rerunning all of MedSAM?
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.
The prediction gets saved so yes
No description provided.