Deep CV
cannot import name 'container_abcs' from 'torch._six' 해결법 본문
timm 버전 때문에 발생한 문제로
에러가 발생한 위치의 파일에 들어간 후
from torch._six import container_abcs 부분을
from collections import abc as container_abcs 로 변경하면 해결됩니다.
'딥러닝' 카테고리의 다른 글
Failed to initialize NVML: Driver/library version mismatch - 에러 해결 (0) | 2023.08.09 |
---|---|
Deformable Conv 이해 (0) | 2021.11.12 |
페트병 라벨 AI 자동 분류기 만들기[아두이노, 파이썬, 딥러닝, CNN] (25) | 2021.10.06 |
Dropout 과 DropConnect의 차이 (0) | 2021.02.14 |