Computer Vision , AI

timm 에러 cannot import name 'container_abcs' from 'torch._six' 본문

備忘錄

timm 에러 cannot import name 'container_abcs' from 'torch._six'

Elune001 2024. 8. 7. 10:04

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

timm=0.3.2 version에서 발생한 문제

 

torch._six에 container_abcs가 없는 torch 버전을 사용해서 그렇다.

collections.abc를 container_abcs로 import 해오는 것으로 해결할 수 있는 경우가 있다.

 

 

 

# from torch._six import container_abcs
import collections.abc as container_abcs

'備忘錄' 카테고리의 다른 글

MMCV 인식 불가 시  (0) 2024.08.07
[Torch] requires_grad 와 state_dict() 사이의 관계  (0) 2024.08.06
Deep learning 수학 기초 이론 [Bayes theorem편]  (0) 2022.12.26
StyleGAN  (1) 2022.11.08