투빅스 14기 서아라
기존의 detection 모델 : classifier을 재정의하여 detector로 사용
Ex) R-CNN
Single regression problem
빠른 속도를 가진다는 장점이 있음
예측을 할 때 이미지 전체를 봄
물체의 일반적인 부분을 학습함
하지만 SOTA object detection model에 비해 다소 accuracy가 떨어짐
Object detection의 개별 요소를 single neural network로 통합하고, bounding box를 예측하기 위해 이미지 전체의 특징을 활용
높은 정확성 유지 및 end-to-end 학습과 실시간 객체 검출이 가능
Input image를 S X S grid로 나눔
각각의 grid cell은 B개의 bounding box와 그 해당 bounding box에 대한 confidence score을 예측
각각의 grid cell은 Conditional class probabilities(C)를 예측
Class-specific confidence score : Test 단계에서 Conditional class probabilities(C)와 개별 bounding box의 confidence score을 곱한 값
YOLO 연구진은 PASCAL VOC dataset을 이용하여 실험을 진행
ImageNet dataset으로 convolution layer을 pretrain
최종 output : class probabilities 및 bounding box 위치 정보
Final layer에는 linear activation function을 적용, 나머지 layer에는 leaky ReLU 적용
Loss는 SSE(sum-squered error)를 기반
YOLO의 loss에는 localization loss와 classification loss로 구성
이미지 내 대부분의 grid cell에는 object가 없음
SSE에서 큰 bounding box와 작은 bounding box에 대해 모두 동일한 가중치로 계산
YOLO는 하나의 grid cell당 여러 개의 bounding box를 예측
PASCAL VOC 2007, 2012 train & validation data set을 활용
135 epoch
Batch size=64
Momentum0.9
Decay=0.0005
첫 epoch에는 learning rate를 0.001에서 0.01로 천천히 상승시킴
Overfitting을 막기 위해 dropout과 data augmentation을 이용
PASCAL VOC data set에 대해서 한 이미지당 98개의 bounding box를 예측해주고, bounding box마다 class probabilities를 구해줌
Grid design의 단점
하나의 grid cell마다 두 개의 bounding box를 예측하고, 하나의 grid cell마다 오직 하나의 object만 검출할 수 있음
YOLO 모델은 데이터로부터 bounding box를 예측하는 것을 학습함
큰 bounding box와 작은 bounding box에 대해 동일한 가중치를 둠
Comparison to Other Real-Time Systems
VOC 2007 Error Analysis
VOC 2012 Results
Generalizability: Person Detection in Artwork
https://arxiv.org/pdf/1506.02640.pdf
https://norman3.github.io/papers/docs/google_inception.html
https://deep-learning-study.tistory.com/430
https://bkshin.tistory.com/entry/%EB%85%BC%EB%AC%B8-%EB%A6%AC%EB%B7%B0-YOLOYou-Only-Look-Once
투빅스 14기 장혜림
YOLOv1
YOLO 알고리즘에 대해서 자세하게 알 수 있었던 시간이었습니다! 좋은 강의 감사합니다:)
투빅스 14기 김민경
object detection의 대표적인 모델인 YOLO의 version 1을 리뷰해 주셔서 YOLO의 기본적인 아이디어를 알 수 있었습니다. 감사합니다:)
투빅스 14기 김상현
이번 강의는 YOLO v1 논문 리뷰로 서아라님께서 진행해주셨습니다.
YOLO v1에 대해 자세하게 설명해주셨습니다. YOLO에서 사용되는 confidence score에 대해 잘 이해할 수 있었습니다.
유익한 강의 감사합니다.