Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.45 KB

File metadata and controls

31 lines (20 loc) · 1.45 KB

object_detection module

This module contains model wrappers, dataloaders, tests and all the ingredients needed to evaluate your object detection models. In particular this module allows you to evaluate your model against the following criteria:

  • Performance on images with basic image attributes.
  • Performance on images with various metadata from the datasets.
  • Robustness against image perturbations like blurring, resizing, recoloring (performed by opencv: https://github.com/opencv/opencv)

Wrapped Datasets

Scan and Metrics

Once the model and dataloader (dl) are wrapped, you can scan the model with the scan API in Giskard vision core:

from giskard_vision.core.scanner import scan

results = scan(model, dl)

It adapts the scan API in Giskard Python library to magically scan the vision model with the dataloader. The considered metric is:

  • Intersection over Union (IoU)

Currently, we only support one object detection both in the model prediction and ground truth.