Error/Pytorch

ImportError: cannot import name 'container_abcs' from 'torch._six'

  • -
728x90
반응형

1. 에러 화면

ImportError: cannot import name 'container_abcs' from 'torch._six'

 

2. 발생 원인

torch의 버전이 업데이트 되면서 발생

 

3. 발생 위치

코드 중, torch._six의 container_abcs를 import 하는 부분에서 발생

 

4. 해결 방법

1) 의 코드를 2) 의 코드로 변경

1)

from torch._six import container_abcs

2)

from collections import abc as container_abcs
728x90
반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.