-
Notifications
You must be signed in to change notification settings - Fork 709
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
Visualizer improvements pt1 #293
Conversation
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.
Thanks! The output looks much better now.
|
||
self.figure, self.axis = plt.subplots(num_rows, num_cols, figsize=figure_size) | ||
self.figure.subplots_adjust(right=0.9) | ||
self.images = [] |
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.
can you add annotation to self.images
anomalib/models/padim/config.yaml
Outdated
@@ -3,7 +3,7 @@ dataset: | |||
format: mvtec | |||
path: ./datasets/MVTec | |||
category: bottle | |||
task: segmentation | |||
task: classification |
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.
Why this change?
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 was committed unintentionally. I'll revert it
Description
First part of the visualizer refactor. Improves the looks of the images, especially for classification.
Example image for classification:
Example image for segmentation:
Also improves the logic within the visualizer callback class.
Fixes
Changes
Checklist