2021.10.19 - [딥러닝관련/Detection] - MMdetection(1) 설치 및 Demo 실행 - (1)
위 환경 설정 및 데모에 이어 COCO, Pascal VOC 등 학습을 진행해보고자 한다.
데이터 구조는 아래를 참고하여 다운 받아 구성한다.
https://detectron2.readthedocs.io/en/latest/tutorials/builtin_datasets.html
학습 방법은 아래를 참고한다.
아래 명령어를 사용해 데이터셋의 위치를 고정시킨 후
export DETECTRON2_DATASETS=/path/to/datasets
학습 실행
./train_net.py --config-file ../configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml --num-gpus 1 SOLVER.IMS_PER_BATCH 2 SOLVER.BASE_LR 0.0025
그러면 아래와 같이 학습이 진행되는 것을 알 수 있다.
'딥러닝관련 > Detection' 카테고리의 다른 글
병변 검출 AI 검진대회 기록 (비공개) (0) | 2021.11.29 |
---|---|
Object detection 정리 (1) (feat, object detection? , 1 stage detector, 2 stage detector) (0) | 2021.11.03 |
MMdetection(2) - 표준 Datasets Inference 및 Train (0) | 2021.10.28 |
MMdetection(1) 설치 및 Demo 실행 - (2) (config) (0) | 2021.10.27 |
MMCV 의 Registry (0) | 2021.10.26 |