반응형
pytorch를 다루다 보면 많은 에러에 직면할 때가 있다. `Broken pipe`를 접하게 되는 경우 당황할 수 있으나, 매우 간단하게 해결되는 오류이다.
이와 같은 오류를 발생하는 원인은 바로 num_workers에 있다. num_workers=0이 아닌 다른 값을 넣을 경우 자주 발생하며 num_workers=0으로 지정하면 바로 해결된다.
'Python > Pytorch' 카테고리의 다른 글
[Error] CUDA-LAUNCH_BLOCKING=1 error (0) | 2022.06.25 |
---|---|
[Error] module 'scipy.sparse' has no attribute 'coo_array' (0) | 2022.06.23 |
[Pytorch] LSTM(Long Short-Term Memory) 코드 구현 (1) | 2022.06.17 |
[Pytorch] Pytorch 에서 모델 요약 보기 with torchsummary (0) | 2022.04.18 |
[Pytorch] CUDA error: device-side assert triggered (0) | 2022.04.13 |