일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- docker attach
- cocre
- numpy
- IVI
- Decision Boundary
- ssh
- vscode
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- Jupyter notebook
- cs231n
- Pull Request
- aiffel exploration
- 히비스서커스
- 사회조사분석사2급
- 기초확률론
- CellPin
- HookNet
- docker exec
- 오블완
- AIFFEL
- 도커
- WSSS
- 백신후원
- docker
- 프로그래머스
- 티스토리챌린지
- GIT
- 코크리
- logistic regression
- airflow
Archives
- Today
- Total
목록RuntimeError: mat1 and mat2 shapes cannot be multiplied (1)
히비스서커스의 블로그
[Pytorch] RuntimeError: mat1 and mat2 shapes cannot be multiplied (16x204800 and 2048x4)
상황 classification model 학습을 위해 pretrained 모델을 사용하기 위해 output을 바꿔주려는 중 다음과 같은 에러를 마주쳤다. 코드 # model의 코드는 https://github.com/Cadene/pretrained-models.pytorch/blob/master/pretrainedmodels/models/senet.py 참조 from model import se_resnext101_32x4d import torch.nn as nn CLASS = 4 model = se_resnext101_32x4d(pretrained='imagenet') model.last_linear = nn.Linear(in_features=2048, out_features=CLASS) 에러메시지 ..
Programming/Python
2023. 2. 1. 16:33