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
- One stage detector
- Single Shot MultiBox Detector
- 프로그래머스타겟넘버정답
- SSD 리뷰
- 코딩테스트2단계
- 프로그래머스파이썬
- 최솟값 만들기
- 타겟넘버bfs
- 프로그래머스너비우선탐색
- 프로그래머스네트워크
- 커피후기
- pytorch
- 프로그래머스타겟넘버
- Two stage Detector
- Faster R-CNN
- deep learning
- 코딩테스트연습
- 프로그래머스타겟넘버파이썬
- Pytorch pruning
- Object Detection
- ssd
- 프로그래머스게임맵최단거리
- Paper list
- 코딩테스트네트워크
- Pruning Tutorial
- ECCV
- Code Study
- 프로그래머스
- 프로그래머스bfs
- 다음큰숫자
Archives
- Today
- Total
목록구현 (1)
soyeonland

The purpose of the document is study class PriorBox(object): """ Compute priorbox coordinates in center-offset form for each source feature map """ def __init__(self, cfg): super(PriorBox, self).__init__() self.image_size = cfg['min_dim'] #300 self.num_priors = len(cfg['aspect_ratios']) #6 self.variance = cfg['variance'] or [0.1] self.feature_maps = cfg['feature_maps'] #[38, 19, 10, 5, 3, 1] sel..
Study/Code Review
2020. 2. 28. 22:00