Detectron2 trained model load (architecture and weights) from config and checkpoints
글 작성자: 만렙개발자
1. build model with config.yaml file
2. load weights with model.pth file
import torch
from detectron2.config import get_cfg
from detectron2.modeling import build_model
from detectron2.checkpoint import DetectionCheckpointer
config_path = 'config.yaml'
model_path = 'model_final.pth'
cfg = get_cfg()
cfg.merge_from_file(config_path)
model = build_model(cfg)
DetectionCheckpointer(model).load(model_path)
'📚 딥딥러닝' 카테고리의 다른 글
Keras baseline using MFCC for Sound Classification (0) | 2020.06.16 |
---|---|
nvidia driver, CUDA 업그레이드 문제 해결 (0) | 2020.06.09 |
nvidia-smi 대신에 nvtop을 쓰자! GPU의 htop 느낌! (1) | 2020.04.04 |
[책 추천] 친절한 실전 딥러닝 수업 (0) | 2020.03.25 |
딥러닝 대용량 학습을 위한 구글 코랩과 클라우드 스토리지의 조합 (Google Colab with Amazon S3 | AWS Amazon EC2 EBS | Google Storage | Transfer) (0) | 2020.03.08 |
댓글
이 글 공유하기
다른 글
-
Keras baseline using MFCC for Sound Classification
Keras baseline using MFCC for Sound Classification
2020.06.16 -
nvidia driver, CUDA 업그레이드 문제 해결
nvidia driver, CUDA 업그레이드 문제 해결
2020.06.09 -
nvidia-smi 대신에 nvtop을 쓰자! GPU의 htop 느낌!
nvidia-smi 대신에 nvtop을 쓰자! GPU의 htop 느낌!
2020.04.04 -
[책 추천] 친절한 실전 딥러닝 수업
[책 추천] 친절한 실전 딥러닝 수업
2020.03.25