📜 강의 정리
MMDetection 실습
✔ 전체구성
- Model Config : model architecture 작성
- Dataset Config : augmentation, dataset format, 종류 등
- Scheduler Config : optim, lr, scheduler 등의 정보
- Runtime Config : log, ckpt 정보
✔ Model Config
model architecture
- type
- backbone
- neck
- bbox
- rpn_head(2-stage detector만 있음)
- roi_head(2-stage detector만 있음)
- train_cfg
- test_cfg
✔ Dataset Config
✔ 새로운 backbone 등록 방법
- swin.py(새로운 백본 파일)를 mmdetection/mmdet/models/backbone 아래에 복사
- swin.py에서 @BACKBONES.register_module() 을 swin class 위에 추가로 작성
- __init__.py에 swin 추가
- final.py(custom config file 최종 실행 파일)에 backbone 부분 덮어쓰기
✔ 서버에 설치된 mmdet을 로컬에 업데이트 하기 위해서는 pip uninstall mmdet 이후에 pip install -v -e . 으로 설치해줘야한다.
✔ mmdetection 설치 방법
방법 1. mim install mmdet
방법2. pip install -v -e . : 로컬에 작성한 mmdetection으로 설치하는 방법
'TIL > Boostcamp AI tech' 카테고리의 다른 글
[Segmentation] COCO Dataset format & EDA & Metric (0) | 2021.10.19 |
---|---|
[3rd P stage] Segmentation Wrap UP (0) | 2021.10.18 |
[Boostcamp Lv2][P stage] Week9-Day38. 2 stage detector :: seoftwa (0) | 2021.09.30 |
[Boostcamp Lv2][P stage] Week9-Day37. Object Detection :: seoftware (0) | 2021.09.27 |
[Boostcamp Lv2] Week8-Day36. 특강 Ⅱ :: soeftware (0) | 2021.09.24 |
댓글