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 |
Tags
- One stage detector
- 다음큰숫자
- 프로그래머스bfs
- 프로그래머스
- 코딩테스트2단계
- ssd
- Single Shot MultiBox Detector
- 프로그래머스타겟넘버
- 프로그래머스타겟넘버파이썬
- 프로그래머스게임맵최단거리
- 코딩테스트네트워크
- Code Study
- SSD 리뷰
- Faster R-CNN
- 프로그래머스너비우선탐색
- 커피후기
- ECCV
- 프로그래머스네트워크
- Paper list
- 프로그래머스파이썬
- Pytorch pruning
- 타겟넘버bfs
- Pruning Tutorial
- 코딩테스트연습
- pytorch
- 최솟값 만들기
- deep learning
- Object Detection
- 프로그래머스타겟넘버정답
- Two stage Detector
Archives
- Today
- Total
목록Code Study (1)
soyeonland
Learning both weights and connections for Efficient Neural Networks-(1)
learning rate 확인하고 싶을 때 def get_lr(optimizer): for param_group in optimizer.param_groups: return param_group['lr'] model.children() returns model.children() is a generator that returns layers of the model from which you can extract your parameter tensors using .weight or .bias[1] print(list(model.children())) [Conv2d(1, 6, kernel_size=(3, 3), stride=(1, 1)), Conv2d(6, 16, kernel_size=(3, 3), str..
Study/Code Review
2020. 3. 22. 20:05