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
- 프로그래머스너비우선탐색
- Code Study
- Pytorch pruning
- 코딩테스트연습
- Two stage Detector
- 프로그래머스bfs
- 프로그래머스
- 다음큰숫자
- 최솟값 만들기
- 프로그래머스게임맵최단거리
- SSD 리뷰
- 프로그래머스네트워크
- 프로그래머스타겟넘버파이썬
- ssd
- 커피후기
- 프로그래머스파이썬
- One stage detector
- 코딩테스트네트워크
- Single Shot MultiBox Detector
- Paper list
- pytorch
- ECCV
- 코딩테스트2단계
- 프로그래머스타겟넘버
- 타겟넘버bfs
- Object Detection
- deep learning
- Pruning Tutorial
- Faster R-CNN
- 프로그래머스타겟넘버정답
Archives
- Today
- Total
목록Pruning Tutorial (1)
soyeonland
Pruning Tutorial
1. model 생성 import torch from torch import nn import torch.nn.utils.prune as prune import torch.nn.functional as F device = torch.device('cuda' if torch.cuda.is_available() else "cpu") class LeNet(nn.Module): def __init__(self): super(LeNet, self).__init__() self.conv1 = nn.Conv2d(1, 6, kernel_size=3) self.conv2 = nn.Conv2d(6, 16, kernel_size=3) self.fc1 = nn.Linear(16 * 5 *5, 120) self.fc2 = nn..
Study/Code Review
2020. 3. 22. 13:37