YOLO Family

One stage detectors

  1. localization과 Classification 동시에 진행
  2. region proposal단계 x
  3. 전체 이미지를 보기때문에 맥락적 이해가 높음

input image → cov layer → feature maps → (multi class classification, bbox regression)

  1. yolov1

  2. ssd?(yolov1의 단점을 보완)

  3. yolov2

    특징

    1. 정확도 향상

      batch normalization

      high resolution

    2. 속도향상

      • fc layer제거

      • anchor box 도입

        좌표대신 offset예측(더 단순하고 학습하기 쉬워짐)

      • fine grained features

        (26x26x412→13x13x2048)→크기가 작은 feature map에 low level정보를 early feature map가공을 통해 합쳐줌

      • multi scale training(320, 352, 608..) ≠ multi scale feature map

    3. 더 많은 class예측

      word tree(많은 데이터 사용)

  4. yolov3

    특징

  5. yolov4

    특징

  6. yolov5(논문이아님)

    특징

    크기별로 모델 구성(small, medium, large, xlarge)

  7. yolox

    특징

  8. yolov7

    contribution

    1. inference cost를 증가시키지 않고 detection의 정확도를 크게 향상
    2. re-parameterized module이 original module을 대체하는 방법과 dynamic label assignment strategy가 다른 output layers assignment하는 방법에서 발생하는 문제를 해결할 수 있는 방법 제안
    3. parameters와 computation을 효과적으로 활용할 수 있는 real time object detector를 만들기 위해 extend 및 compound scaling 방법을 제안

Untitled

Untitled