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
- YOLO
- Python
- C
- VS Code
- pandas
- 채보
- windows forms
- 핑거스타일
- paramiko
- Linux
- JSON
- 명령어
- Visual Studio
- LIST
- 기타 연주
- ubuntu
- Selenium
- OpenCV
- mysql
- 오류
- Docker
- 프로그래머스
- error
- SSH
- pytorch
- pip
- label
- C++
- Numpy
- C#
Archives
- Today
- Total
목록key 변경 (1)
기계는 거짓말하지 않는다
torch load_state_dict model key 변경
torch의 load를 이용하여 model weight를 불러올 때, module. model 등이 key 값에 더 붙어있거나, key 이름이 다른 경우 변경하여 가지고 올 수 있다. 단, model 구조는 같아야 한다. state_dict = checkpoint[state_key] new_state_dict = {} # load된 model의 key에 model. 이 붙어있을 경우 제거 for k, v in state_dict.items(): if "model." in k: name = k[6:] new_state_dict[name] = v print(new_state_dict.keys()) if len(new_state_dict.keys()) == 0: model.load_state_dict(stat..
AI
2023. 2. 3. 23:39