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_abcs2)from collections import abc as container_abcs
ImportError: cannot import name 'container_abcs' from 'torch._six'
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_abcs2)from collections import abc as container_abcs
2024.05.23