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
- Continual Learning
- Energy-based model
- learning to prompt
- Img2pose
- Vector Quantized Diffusion Model for Text-to-Image Synthesis
- Markov transition matrix
- DualPrompt
- Class Incremental Learning
- timm
- Face Alignment
- CVPR2022
- requires_grad
- prompt learning
- mmcv
- Facial Landmark Localization
- CIL
- VQ-diffusion
- img2pose: Face Alignment and Detection via 6DoF
- Discrete diffusion
- L2P
- VQ-VAE
- learning to prompt for continual learning
- Mask diffusion
- Face Pose Estimation
- ENERGY-BASED MODELS FOR CONTINUAL LEARNING
- state_dict()
- Mask-and-replace diffusion strategy
- 베이지안 정리
- PnP algorithm
- Class Incremental
Archives
- Today
- Total
Computer Vision , AI
MMCV 인식 불가 시 본문
# mmcv 2.0 이하 버전에 해당
우선 깔려 있는 mmcv를 pip으로 지운다.
pip uninstall mmcv
or
pip uninstall mmcv-full
이후 버전을 명시하여 새로 mmcv를 설치한다.
pip install mmcv-full==1.4.4 -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.10/index.html
https://download.openmmlab.com/mmcv/dist/cu113/torch1.10/index.html
download.openmmlab.com
pip으로 설치하되 뒤에 버전 명시를 해주어야함
버전 명시 예시
https://download.openmmlab.com/mmcv/dist/cu{쿠다버전}/torch{토치.버전}/index.html
식으로 입력하면 됨 ex)cuda 11.3 torch 1.10.1 -> cu113/torch1.10/
https://download.openmmlab.com/mmcv/dist/cu113/torch1.10/index.html
download.openmmlab.com
'備忘錄' 카테고리의 다른 글
timm 에러 cannot import name 'container_abcs' from 'torch._six' (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 |