안녕하세요 .. ?
지금 mmdetection kitti_tiny 학습 강의를 듣고 있습니다.
혹시 Pretrained된 모델을 학습 시키고 나서, 학습 시킨 inference 모델을 다시 불러 올 때, tutorial_exps 폴더에 있는 epoch_12.pth 파일을 가져오면 되나요 .. ?
이렇게 하면 될까요 .. ?
config_file = '/content/mmdetection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py' checkpoint_file = '/content/mmdetection/tutorial_exps/epoch_12.pth'
마지막 checkpoint 파일이 어떤 건지 알 수 있을까요 .. ?
config_file = '/content/mmdetection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py'
checkpoint_file = '/content/mmdetection/tutorial_exps/epoch_12.pth'
model = init_detector(config_file , checkpoint_file, device='cuda:0')
results = inference_detector(model, img_arr)을 수행 했는데 num_classes가 4개가 아닌 80개의 Class에 대하여 예측을 했지만, Objectdetection을 하지못해
결국 학습하는 것부터 다시 시작해서 예측을 했습니다 ~!!!
학습을 시킨 모델을 다시 불러 오지는 못하는 건가요 .. ? ㅠㅠ
학습을 완료한 모델을 불어올때 이렇게코드를 사진에서 처럼 작성했습니다 ~!!