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