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
- GAN
- 경희대
- Vae
- 리눅스
- ICCV
- ICCV 2021
- CVPR2023
- Neural Radiance Field
- panoptic nerf
- 논문
- NERF
- Deep Learning
- 논문 리뷰
- IROS
- 2022
- 딥러닝
- CVPR
- panoptic segmentation
- 논문리뷰
- linux
- paper review
- Paper
- pytorch
- 융합연구
- NeRF paper
- 파이토치
- Computer Vision
- Python
- docker
- Semantic Segmentation
Archives
- Today
- Total
윤제로의 제로베이스
AssertionError: if capturable=false, state_steps should not be cuda tensors. 본문
Issue board
AssertionError: if capturable=false, state_steps should not be cuda tensors.
윤_제로 2023. 5. 25. 02:25NeRF pytorch 코드를 돌리다가 자꾸 이 에러가 뜨길래 에러 해결 법을 찾아보았다.
optimizer = optim.Adam(...)
optimizer.param_groups[0]['capturable'] = True
optimizer 에서 'capturable'을 true로 바꿔줘야한다...
https://normal-engineer.tistory.com/321
[에러기록] assertionerror: if capturable=false, state_steps should not be cuda tensors.
pytorch 안에서 adam을 쓸 때 자꾸 위와 같은 에러가 떠서 이를 위해 optimizer = optim.Adam(func.parameters(), lr=args.lr) optimizer.param_groups[0]['capturable'] = True 다음과 같이 'capturable'을 true로 바꿔줘야했다. 그런
normal-engineer.tistory.com