detectron2_aihub_tutorial icon indicating copy to clipboard operation
detectron2_aihub_tutorial copied to clipboard

Results 2 detectron2_aihub_tutorial issues
Sort by recently updated
recently updated
newest added

`cfg = get_cfg() #cfg.merge_from_file(model_zoo.get_config_file("COCO-Detection/retinanet_R_50_FPN_3x.yaml")) cfg.merge_from_file("/content/drive/MyDrive/Base-RetinaNet.yaml") cfg.MODEL.WEIGHTS = "/content/drive/MyDrive/retinanet_r_50_fpn_3x_aihub_final.pth" # model path cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.7 predictor = DefaultPredictor(cfg) ` 위 코드를 이용해서 학습된 모델로 예측 진행했는데, 아래처럼 결과가 나왔습니다. 혹시 어떻게...