에러 message
from torch._six import container_abcs
ModuleNotFoundError: No module named 'torch._six'
발생원인
torch 버전 업데이트
해결 방안
1. torch 버전 downgrade
2. import lib 수정
from torch._six import container_abcs
위 부분을 아래와 같이 수정
from collections import abc as container_abcs
'Deep Learning' 카테고리의 다른 글
Search-R1 : Training LLMs to Reason and Leverage Search Engines with Reinforcement Learning (0) | 2025.05.03 |
---|---|
Modify its 'disableApiTermination' instance attribute and try again. (0) | 2025.01.13 |
bbox Label 좌표 형식 (0) | 2024.10.16 |
Yolo 라이센스 (0) | 2024.09.08 |
코드 재 사용에 관한 라이센스 (1) | 2024.09.07 |