detectron2 official example : https://github.com/facebookresearch/detectron2/tree/main/projects 간략한 학습 코드 : https://github.com/nhm0819/detectron2_training 이번에는 detectron2 튜토리얼에 있는 과정 말고, 조금 더 customize 하는 방법에 대해 소개하려고 합니다. detectron2 tutorial에서 학습하는 코드를 보면 아래와 같이 되어있습니다. from detectron2.config import get_cfg from detectron2.engine import DefaultTrainer cfg = get_cfg() # default configure cfg.DAT..