-
yolov5에서 train.py 코드 내에 아래와 같이 하이퍼파라미터가 기본적으로 들어가는 것을 알 수있다.
parser.add_argument('--hyp', type=str, default=ROOT / 'data/hyps/hyp.scratch-low.yaml', help='hyperparameters path')
이 파일은 data/hype 아래에 있다.
yolov5/data/hyps$ tree
.
├── hyp.Objects365.yaml
├── hyp.VOC.yaml
├── hyp.scratch-high.yaml
├── hyp.scratch-low.yaml
└── hyp.scratch-med.yaml그럼 아래처럼 값을 설정해줄 수 있다!!!!
나는 여기서 degrees와 flipup 값이 0으로 설정(안함)되어있어서 해당 값을 변경해주었다.
이러면 이미지를 augmentation한다고 한다!! 야호
lr0: 0.01 # initial learning rate (SGD=1E-2, Adam=1E-3) lrf: 0.01 # final OneCycleLR learning rate (lr0 * lrf) momentum: 0.937 # SGD momentum/Adam beta1 weight_decay: 0.0005 # optimizer weight decay 5e-4 warmup_epochs: 3.0 # warmup epochs (fractions ok) warmup_momentum: 0.8 # warmup initial momentum warmup_bias_lr: 0.1 # warmup initial bias lr box: 0.05 # box loss gain cls: 0.5 # cls loss gain cls_pw: 1.0 # cls BCELoss positive_weight obj: 1.0 # obj loss gain (scale with pixels) obj_pw: 1.0 # obj BCELoss positive_weight iou_t: 0.20 # IoU training threshold anchor_t: 4.0 # anchor-multiple threshold # anchors: 3 # anchors per output layer (0 to ignore) fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5) hsv_h: 0.015 # image HSV-Hue augmentation (fraction) hsv_s: 0.7 # image HSV-Saturation augmentation (fraction) hsv_v: 0.4 # image HSV-Value augmentation (fraction) degrees: 0.5 # image rotation (+/- deg) translate: 0.1 # image translation (+/- fraction) scale: 0.5 # image scale (+/- gain) shear: 0.0 # image shear (+/- deg) perspective: 0.0 # image perspective (+/- fraction), range 0-0.001 flipud: 0.5 # image flip up-down (probability) fliplr: 0.5 # image flip left-right (probability) mosaic: 1.0 # image mosaic (probability) mixup: 0.0 # image mixup (probability) copy_paste: 0.0 # segment copy-paste (probability)
'2022년 > Developement' 카테고리의 다른 글
Object Detction model (2) 2022.05.31 docker elk 더 좋은 repo를 찾아내다! (0) 2022.04.15 소프트웨어 장인 (0) 2022.04.12 로그 데이터의 중요성 (0) 2022.04.11 logstash + aws + twitter 데이터 수집 # 1 (0) 2022.03.15