Commit
·
3c3c71a
1
Parent(s):
97d7046
Update display.py
Browse files- display.py +1 -0
display.py
CHANGED
@@ -14,6 +14,7 @@ def inference(image: np.ndarray, iou_thresh: float = 0.75, thresh: float = 0.75,
|
|
14 |
# iou_thresh = 0.75
|
15 |
# thresh = 0.75
|
16 |
scaled_anchors = config.SCALED_ANCHORS
|
|
|
17 |
transforms = A.Compose(
|
18 |
[
|
19 |
A.LongestMaxSize(max_size=config.IMAGE_SIZE),
|
|
|
14 |
# iou_thresh = 0.75
|
15 |
# thresh = 0.75
|
16 |
scaled_anchors = config.SCALED_ANCHORS
|
17 |
+
cam = YoloCAM(model=model, target_layers=[model.layers[-2]], use_cuda=False)
|
18 |
transforms = A.Compose(
|
19 |
[
|
20 |
A.LongestMaxSize(max_size=config.IMAGE_SIZE),
|