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