Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
05a4cc2
working on perturbation detectors
rabah-khalek Aug 8, 2024
cf2a8c4
Refactor HF ppl model to convert numpy array to PIL image
Inokinoki Aug 5, 2024
7ba35b6
Allow to set global mode for an HF ppl model for PIL conversion
Inokinoki Aug 5, 2024
6c3ffc9
mode switch in hf models
rabah-khalek Aug 8, 2024
7e14795
supporting gray scale
rabah-khalek Aug 8, 2024
f3d8e32
Merge branch 'main' into perturbation-detectors
rabah-khalek Aug 8, 2024
c30dade
Merge branch 'main' into perturbation-detectors
rabah-khalek Aug 10, 2024
98baa6d
added missing predict_rgb_image
rabah-khalek Aug 12, 2024
a9fa22f
ensuring backward compatibility with predict_image
rabah-khalek Aug 12, 2024
e9198ce
updating detectors
rabah-khalek Aug 12, 2024
4dd46b4
Adding noise perturbation detector with Gaussian noise (#52)
bmalezieux Aug 12, 2024
e547d4d
updating detectors
rabah-khalek Aug 12, 2024
a44399d
refactoring detectors
rabah-khalek Aug 13, 2024
fe26272
small updates
rabah-khalek Aug 13, 2024
c359c9c
refactored spec setting
rabah-khalek Aug 13, 2024
6dca401
fixed import in object_detection dataloader
rabah-khalek Aug 13, 2024
99d98dd
renaming pert detectors
rabah-khalek Aug 13, 2024
6601ecb
Merge branch 'main' into perturbation-detectors
rabah-khalek Aug 13, 2024
14de1fa
Merge branch 'perturbation-detectors' into refactoring-detectors
rabah-khalek Aug 13, 2024
182731c
fixed import
rabah-khalek Aug 13, 2024
6ba1994
fixing get_scan_results args
rabah-khalek Aug 13, 2024
ffbb425
Merge pull request #53 from Giskard-AI/refactoring-detectors
rabah-khalek Aug 13, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small updates
  • Loading branch information
rabah-khalek committed Aug 13, 2024
commit fe26272e1b6ea3b131ef4751ab50dfc05f6b9379
4 changes: 0 additions & 4 deletions giskard_vision/landmark_detection/detectors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
from .cropping_detector import CroppingDetectorLandmark
from .metadata_detector import MetaDataScanDetectorLandmark
from .transformation_blurring_detector import TransformationBlurringDetectorLandmark
from .transformation_color_detector import TransformationColorDetectorLandmark
from .transformation_resize_detector import TransformationResizeDetectorLandmark

__all__ = [
"CroppingDetectorLandmark",
"TransformationBlurringDetectorLandmark",
"TransformationColorDetectorLandmark",
"TransformationResizeDetectorLandmark",
"MetaDataScanDetectorLandmark",
]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from giskard_vision.core.scanner.issues import Robustness
from giskard_vision.core.issues import Robustness

from ...core.detectors.decorator import maybe_detector
from ..dataloaders.wrappers import CroppedDataLoader
Expand Down