RashiAgarwal commited on
Commit
955b7b0
·
1 Parent(s): 3c3c71a

Update display.py

Browse files
Files changed (1) hide show
  1. display.py +1 -1
display.py CHANGED
@@ -9,7 +9,7 @@ from pytorch_grad_cam.utils.image import show_cam_on_image
9
  from utils import YoloCAM, cells_to_bboxes, non_max_suppression
10
 
11
  def inference(image: np.ndarray, iou_thresh: float = 0.75, thresh: float = 0.75,show_cam: bool = False, transparency: float = 0.5):
12
- model = YOLOV3_PL()
13
  model.load_state_dict(torch.load("model.pth", map_location=torch.device('cpu')), strict=False)
14
  # iou_thresh = 0.75
15
  # thresh = 0.75
 
9
  from utils import YoloCAM, cells_to_bboxes, non_max_suppression
10
 
11
  def inference(image: np.ndarray, iou_thresh: float = 0.75, thresh: float = 0.75,show_cam: bool = False, transparency: float = 0.5):
12
+ model = YOLOv3(num_classes=20)
13
  model.load_state_dict(torch.load("model.pth", map_location=torch.device('cpu')), strict=False)
14
  # iou_thresh = 0.75
15
  # thresh = 0.75