Skip to content

Commit 3e4abce

Browse files
committed
[fix] integer convolution on
1 parent 1095d90 commit 3e4abce

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

cfgs/vision_model/default.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,42 @@ faster_rcnn_R_50_FPN_3x:
66
model_path_prefix: ${..model_root_path}
77
cfg: "models/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml"
88
weights: "weights/detectron2/COCO-Detection/faster_rcnn_R_50_FPN_3x/137849458/model_final_280758.pkl"
9-
integer_conv_weight: False
9+
integer_conv_weight: True
1010
splits : "r2" #, "c2" or "fpn"
1111

1212
faster_rcnn_X_101_32x8d_FPN_3x:
1313
model_path_prefix: ${..model_root_path}
1414
cfg: "models/detectron2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml"
1515
weights: "weights/detectron2/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x/139173657/model_final_68b088.pkl"
16-
integer_conv_weight: False
16+
integer_conv_weight: True
1717
splits : "fpn" #, "c2" or "r2"
1818

1919
mask_rcnn_R_50_FPN_3x:
2020
model_path_prefix: ${..model_root_path}
2121
cfg: "models/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml"
2222
weights: "weights/detectron2/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x/137849600/model_final_f10217.pkl"
23-
integer_conv_weight: False
23+
integer_conv_weight: True
2424
splits : "r2" #, "c2" or "fpn"
2525

2626
mask_rcnn_X_101_32x8d_FPN_3x:
2727
model_path_prefix: ${..model_root_path}
2828
cfg: "models/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml"
2929
weights: "weights/detectron2/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x/139653917/model_final_2d9806.pkl"
30-
integer_conv_weight: False
30+
integer_conv_weight: True
3131
splits : "fpn" #, "c2" or "r2"
3232

3333
panoptic_rcnn_R_101_FPN_3x:
3434
model_path_prefix: ${..model_root_path}
3535
cfg: "models/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml"
3636
weights: "weights/detectron2/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x/139514519/model_final_cafdb1.pkl"
37+
integer_conv_weight: False
3738
splits : "fpn"
3839

3940
jde_1088x608:
4041
model_path_prefix: ${..model_root_path}
4142
cfg: "models/Towards-Realtime-MOT/cfg/yolov3_1088x608.cfg"
4243
weights: "weights/jde/jde.1088x608.uncertainty.pt"
43-
integer_conv_weight: False
44+
integer_conv_weight: True
4445
iou_thres: 0.5
4546
conf_thres: 0.5
4647
nms_thres: 0.4

0 commit comments

Comments
 (0)