-
Notifications
You must be signed in to change notification settings - Fork 1
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
[GSK-2569, GSK-2585, GSK-2658] Scan for computer vision #27
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.
First very fast skim-through:
- I think you pushed
giskard_vision/scanner/scanner_vision.py
by mistake? - Could you create a new module called
detectors
undergiskard_vision
and put every detector in a separate script? - Make the example a notebook, and just call the detectors from the module.
I'll review the logic inside the detectors after our meeting.
…ision into GSK-2569-report-gen
…ire a compute_results method that outputs a list of dictionaries with specific format that corresponds to issues
[GSK-2569] Detectors structure
…ision into GSK-2569-report-gen
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.
Overall good, could you please also create a scan
API similar to this https://github.com/Giskard-AI/giskard/blob/da017987fa74f89e4f48945907a8febcb8cb3dd4/giskard/scanner/__init__.py#L26?
removed detectors from giskard_vision init
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.
great work @bmalezieux 🎉
Add report generation for computer vision tasks based on Giskard
Scanner
object. The user can define a list ofDetector
objects to create tests by himself and generate the report with aScanner
.An example is provided in
examples/landmark_detection/examples.py