Skip to content

Commit

Permalink
Merge pull request #55 from Giskard-AI/fix-landmark-model-type
Browse files Browse the repository at this point in the history
Change model type name for landmark detection
  • Loading branch information
rabah-khalek authored Aug 14, 2024
2 parents 0af2c9b + 95ebfea commit 6287112
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .base import LandmarkDetectionBaseDetector


@maybe_detector("cropping_landmark", tags=["vision", "face", "landmark", "transformed", "cropped"])
@maybe_detector("cropping_landmark", tags=["vision", "face", "landmark_detection", "transformed", "cropped"])
class CroppingDetectorLandmark(LandmarkDetectionBaseDetector):
"""
Detector that evaluates models performance relative to a facial part
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
from .specs import DetectorSpecs


@maybe_detector("metadata_landmark", tags=["vision", "face", "landmark", "metadata"])
@maybe_detector("metadata_landmark", tags=["vision", "face", "landmark_detection", "metadata"])
class MetaDataScanDetectorLandmark(DetectorSpecs, MetaDataScanDetector):
surrogates = [SurrogateVolumeConvexHull, SurrogateNME]
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .base import LandmarkDetectionBaseDetector


@maybe_detector("resize_landmark", tags=["vision", "face", "landmark", "transformed", "resized"])
@maybe_detector("resize_landmark", tags=["vision", "face", "landmark_detection", "transformed", "resized"])
class TransformationResizeDetectorLandmark(LandmarkDetectionBaseDetector):
"""
Detector that evaluates models performance on resized images
Expand Down

0 comments on commit 6287112

Please sign in to comment.