SSD(single shot detector) 코드 분석 0. (prior box)
SSD에서는 ground truth box, predict box 이외에도 prior box를 미리 정의하여 학습에 사용 1. Feature map size - [38, 19, 10, 5, 3, 1] 2. shrink range(stride) - [8, 16, 32, 64, 100, 300] 3. box size(min, max) - [30, 60, 111, 162, 213, 264] / [60, 111, 162, 213, 264, 315] 4. aspect_ratio - [[2], [2, 3], [2, 3], [2, 3], [2], [2]] 실제 구현상은 어떻게 되어 있나 보자 # https://github.com/qfgaohao/pytorch-ssd """Generate SSD Prior Boxes...
2022. 5. 17.