Skip to content

Commit 6287112

Browse files
authored
Merge pull request #55 from Giskard-AI/fix-landmark-model-type
Change model type name for landmark detection
2 parents 0af2c9b + 95ebfea commit 6287112

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎giskard_vision/landmark_detection/detectors/cropping_detector.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .base import LandmarkDetectionBaseDetector
77

88

9-
@maybe_detector("cropping_landmark", tags=["vision", "face", "landmark", "transformed", "cropped"])
9+
@maybe_detector("cropping_landmark", tags=["vision", "face", "landmark_detection", "transformed", "cropped"])
1010
class CroppingDetectorLandmark(LandmarkDetectionBaseDetector):
1111
"""
1212
Detector that evaluates models performance relative to a facial part

‎giskard_vision/landmark_detection/detectors/metadata_detector.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
from .specs import DetectorSpecs
99

1010

11-
@maybe_detector("metadata_landmark", tags=["vision", "face", "landmark", "metadata"])
11+
@maybe_detector("metadata_landmark", tags=["vision", "face", "landmark_detection", "metadata"])
1212
class MetaDataScanDetectorLandmark(DetectorSpecs, MetaDataScanDetector):
1313
surrogates = [SurrogateVolumeConvexHull, SurrogateNME]

‎giskard_vision/landmark_detection/detectors/transformation_resize_detector.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .base import LandmarkDetectionBaseDetector
66

77

8-
@maybe_detector("resize_landmark", tags=["vision", "face", "landmark", "transformed", "resized"])
8+
@maybe_detector("resize_landmark", tags=["vision", "face", "landmark_detection", "transformed", "resized"])
99
class TransformationResizeDetectorLandmark(LandmarkDetectionBaseDetector):
1010
"""
1111
Detector that evaluates models performance on resized images

0 commit comments

Comments
 (0)