You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-6Lines changed: 34 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -24,19 +24,25 @@
24
24
</h3>
25
25
<br />
26
26
27
-
## Supported computer vision tasks
27
+
28
+
29
+
Giskard Vision is a comprehensive Python package designed to simplify and streamline a variety of computer vision tasks. Whether you're working on facial landmark detection, image classification, or object detection, Giskard Vision provides the tools you need to evaluate your models with ease.
Giskard Vision includes powerful scanning capabilities to evaluate your models. To run a scan, first ensure that you have the `giskard` library installed:
56
+
```shell
57
+
pip install giskard
58
+
```
59
+
Then, you can perform a scan using the following code:
60
+
```py
61
+
from giskard_vision import scan
62
+
63
+
dataloader =...
64
+
model =...
65
+
66
+
results = scan(model, dataloader)
67
+
```
68
+
Explore the examples provided to see how to implement scans in different contexts:
0 commit comments