-
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
Add GradCAM for object detection #75
Commits on Mar 24, 2023
-
Add example with GradCAM for YOLOv5 in object detection
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 24, 2023 Configuration menu - View commit details
-
Copy full SHA for bb9aace - Browse repository at this point
Copy the full SHA bb9aaceView commit details
Commits on Mar 27, 2023
-
Remove constraints for min and max bbox size
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 95ebde4 - Browse repository at this point
Copy the full SHA 95ebde4View commit details -
Extract base ObjectDetector class
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 800d316 - Browse repository at this point
Copy the full SHA 800d316View commit details -
Remove previous example with object detection task
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 7bf25d7 - Browse repository at this point
Copy the full SHA 7bf25d7View commit details -
Add original code source URL in docstring
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 0e06077 - Browse repository at this point
Copy the full SHA 0e06077View commit details -
Move fetching layer from YOLO model function, add target_layer parame…
…ter to GradCAM Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for 3cb9096 - Browse repository at this point
Copy the full SHA 3cb9096View commit details -
Add dataclasses for complex object detection output data types
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 27, 2023 Configuration menu - View commit details
-
Copy full SHA for b0a2f72 - Browse repository at this point
Copy the full SHA b0a2f72View commit details
Commits on Mar 30, 2023
-
Refactor code, add docstrings, fix names, add workaround with np.abs …
…for bbox coordinates Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMar 30, 2023 Configuration menu - View commit details
-
Copy full SHA for a109c95 - Browse repository at this point
Copy the full SHA a109c95View commit details
Commits on Apr 3, 2023
-
Add support for torchvision SSD model for object detection, refactoring
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 3, 2023 Configuration menu - View commit details
-
Copy full SHA for 729b160 - Browse repository at this point
Copy the full SHA 729b160View commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 3, 2023 Configuration menu - View commit details
-
Copy full SHA for cba9096 - Browse repository at this point
Copy the full SHA cba9096View commit details -
Refactor, change BaseObjectDetector class definition, make SSD model …
…inherit from it Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 3, 2023 Configuration menu - View commit details
-
Copy full SHA for c668ea0 - Browse repository at this point
Copy the full SHA c668ea0View commit details
Commits on Apr 4, 2023
-
Refactor modules structure, add GradCAM to object detection module
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 4, 2023 Configuration menu - View commit details
-
Copy full SHA for 4c64201 - Browse repository at this point
Copy the full SHA 4c64201View commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 4, 2023 Configuration menu - View commit details
-
Copy full SHA for 80675b6 - Browse repository at this point
Copy the full SHA 80675b6View commit details -
Refactor, move OD models to separate module, fix YOLO prediction gene…
…ration Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 4, 2023 Configuration menu - View commit details
-
Copy full SHA for 5202503 - Browse repository at this point
Copy the full SHA 5202503View commit details -
Apply pre-commit hooks to all files
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 4, 2023 Configuration menu - View commit details
-
Copy full SHA for f07bddc - Browse repository at this point
Copy the full SHA f07bddcView commit details
Commits on Apr 5, 2023
-
Replace excessive unnecessary dependency with simple parsing
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 5, 2023 Configuration menu - View commit details
-
Copy full SHA for 6c4d599 - Browse repository at this point
Copy the full SHA 6c4d599View commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 5, 2023 Configuration menu - View commit details
-
Copy full SHA for 1cf27ba - Browse repository at this point
Copy the full SHA 1cf27baView commit details -
Remove unused path in forward pass algorithm
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 5, 2023 Configuration menu - View commit details
-
Copy full SHA for 3d628be - Browse repository at this point
Copy the full SHA 3d628beView commit details
Commits on Apr 6, 2023
-
Replace custom implementations with torchvision imports
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 6, 2023 Configuration menu - View commit details
-
Copy full SHA for 9cc543e - Browse repository at this point
Copy the full SHA 9cc543eView commit details
Commits on Apr 7, 2023
-
Add unit tests for object detection utils
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 7, 2023 Configuration menu - View commit details
-
Copy full SHA for 2a3654b - Browse repository at this point
Copy the full SHA 2a3654bView commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 7, 2023 Configuration menu - View commit details
-
Copy full SHA for 74f3af3 - Browse repository at this point
Copy the full SHA 74f3af3View commit details
Commits on Apr 11, 2023
-
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 11, 2023 Configuration menu - View commit details
-
Copy full SHA for dba4220 - Browse repository at this point
Copy the full SHA dba4220View commit details -
Add unit test for object detection visualization utils, refactor
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 11, 2023 Configuration menu - View commit details
-
Copy full SHA for e8ca464 - Browse repository at this point
Copy the full SHA e8ca464View commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 11, 2023 Configuration menu - View commit details
-
Copy full SHA for 615b29f - Browse repository at this point
Copy the full SHA 615b29fView commit details
Commits on Apr 26, 2023
-
Remove redundant device argument to YOLOv5ObjectDetector class initia…
…lizer Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for 74bd96a - Browse repository at this point
Copy the full SHA 74bd96aView commit details -
Fix unit tests for image preprocessing - use rectangle instead of squ…
…are shapes Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for 671a6a6 - Browse repository at this point
Copy the full SHA 671a6a6View commit details -
Simplify forward function in WrapperYOLOv5ObjectDetectionModule class
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedApr 26, 2023 Configuration menu - View commit details
-
Copy full SHA for e9caa21 - Browse repository at this point
Copy the full SHA e9caa21View commit details
Commits on May 9, 2023
-
Add custom GradCAM base algorithm implementation for classification a…
…nd object detection Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 9, 2023 Configuration menu - View commit details
-
Copy full SHA for 2ef603e - Browse repository at this point
Copy the full SHA 2ef603eView commit details
Commits on May 16, 2023
-
Move object detection model examples to examples directory
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 16, 2023 Configuration menu - View commit details
-
Copy full SHA for c716d68 - Browse repository at this point
Copy the full SHA c716d68View commit details
Commits on May 17, 2023
-
Restructure library directory structure for explainer algorithms, mov…
…e object detection example script to notebook Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for 3de8d7c - Browse repository at this point
Copy the full SHA 3de8d7cView commit details -
Add interpolation method parameter to resize_image function
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for b6adfe5 - Browse repository at this point
Copy the full SHA b6adfe5View commit details -
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for 77fa17a - Browse repository at this point
Copy the full SHA 77fa17aView commit details -
Remove adding epsilon in preprocess object detection image function
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for bc0b278 - Browse repository at this point
Copy the full SHA bc0b278View commit details -
Fix example notebook - add assertions of YOLOv5 image shape
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for cc968da - Browse repository at this point
Copy the full SHA cc968daView commit details -
Fix basic usage notebook after refactoring class names and directory …
…structure Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 17, 2023 Configuration menu - View commit details
-
Copy full SHA for 581c4f4 - Browse repository at this point
Copy the full SHA 581c4f4View commit details
Commits on May 18, 2023
-
Enable changing image ratio to match YOLOv5 requirements of image shape
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 18, 2023 Configuration menu - View commit details
-
Copy full SHA for 734dd22 - Browse repository at this point
Copy the full SHA 734dd22View commit details
Commits on May 19, 2023
-
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 19, 2023 Configuration menu - View commit details
-
Copy full SHA for 18f8c40 - Browse repository at this point
Copy the full SHA 18f8c40View commit details -
Refactor object detection custom modules
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 19, 2023 Configuration menu - View commit details
-
Copy full SHA for 4d811a1 - Browse repository at this point
Copy the full SHA 4d811a1View commit details -
Refactor GradCAM for object detection
Signed-off-by: Adam Wawrzyński <adam.wawrzynski@reasonfieldlab.com>
Adam Wawrzyński committedMay 19, 2023 Configuration menu - View commit details
-
Copy full SHA for b146038 - Browse repository at this point
Copy the full SHA b146038View commit details