Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Facial Landmark Localization
- Class Incremental
- DualPrompt
- VQ-diffusion
- mmcv
- Img2pose
- Discrete diffusion
- Face Alignment
- Energy-based model
- Class Incremental Learning
- Continual Learning
- img2pose: Face Alignment and Detection via 6DoF
- Mask diffusion
- timm
- learning to prompt
- CVPR2022
- Mask-and-replace diffusion strategy
- ENERGY-BASED MODELS FOR CONTINUAL LEARNING
- Vector Quantized Diffusion Model for Text-to-Image Synthesis
- Face Pose Estimation
- L2P
- Markov transition matrix
- state_dict()
- VQ-VAE
- CIL
- PnP algorithm
- requires_grad
- 베이지안 정리
- learning to prompt for continual learning
- prompt learning
Archives
- Today
- Total
Computer Vision , AI
timm 에러 cannot import name 'container_abcs' from 'torch._six' 본문
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 |