Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 대학원생
- 일상
- FPS
- 부트캠프
- flops
- deep learning #machine learning #history
- 네이버
- neural networks #linear #nonlinear #perceptrons
- AI tech
- 1x1 convolution
- IOU
- evaluation
- CNN #padding #stride #parameters
- objectdetection
- confusion matrix
- recall
- momentum #adagrad #adam #early stopping #data augmentation #dropout #label smoothing #batch normalization
- generalization #overfitting # bootstrapping #bagging #boosting #stochastic gradient desent #mini-batch gradient descent #batch gradient descent
- map
- precision
- Optimization
Archives
- Today
- Total
공부 일기장
mmdetection 사용 2 - train 본문
train하기 앞서서 _base_와 비슷한 형태로 세팅을 해두고
아래와 같이 test_model.py를 만들어두자
_base_ = [
'./_base_/datasets/coco_detection.py',
'./_base_/models/faster_rcnn_r50_fpn.py',
'./_base_/schedules/schedule_1x.py',
'./_base_/default_runtime.py'
]
그리고 터미널에 python train.py configs/test_model.py 해주면 학습이 시작된다.
train.py 하는 경우 설정해줄수 있는 config가 여러가지 seed고정을 하는건 필수적이라고 본다.
'네이버 부스트 캠프 > mmdetection 사용법' 카테고리의 다른 글
mmdetection 사용 3 - train model tuning (0) | 2022.12.02 |
---|---|
mmdetection 사용 1 - config 설명 (0) | 2022.12.02 |
Comments