본문 바로가기

Deep Learning

from torch._six import container_abcs ModuleNotFoundError: No module named 'torch._six'

에러 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' 카테고리의 다른 글