Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- m590 수리
- networkbehaviourid
- m585
- 유니티 합치기
- 유니티 해상도 변경
- navigation
- unity merge
- 깃허브 데스크탑 병합
- 유니티 해상도 설정
- 깃허브 데스크탑 합치기
- M590
- unity 병합
- stateauthority
- 유니티 머지
- m585 수리
- nav거리
- networkobject.networkid
- 몬스터
- NavMesh
- nav오브젝트사이거리
- githubdesktopmerge
- Unity
- 유니티
- Github DeskTop Merge
- networkobject
- 유니티 브랜치 merge
- 유니티 해상도
- 오브젝트 깜빡임
- unity git
Archives
- Today
- Total
집게사장의 꿈
[파이썬]NotImplementedError: Could not run 'torchvision::nms' with arguments from the 'CUDA' backend 본문
기타
[파이썬]NotImplementedError: Could not run 'torchvision::nms' with arguments from the 'CUDA' backend
Krapboss 2023. 11. 30. 00:30문제의 원인은 Yolo v5의 패키지를 통째로 다운 받아 사용하던 와중에 문제로 발생한 것,
내가 해결한 방법
아래에서 나온 해결 방안을 토대로 Torchvision의 버전이 맞지 않아 발생한 것이라고 판단
Getting "NotImplementedError: Could not run 'torchvision::nms' with arguments from CUDA backend" despite having all necessary li
The full error: NotImplementedError: Could not run 'torchvision::nms' with arguments from the 'CUDA' backend. This could be because the operator doesn't exist for this backend, or was omitted durin...
stackoverflow.com
기존 torchvision 삭제
pip uninstall -r torch torchvision
torch도 삭제 가능
pip uninstall torch torch
yolo v5에 붙어있는 필수요소 설치
pip install -r requirements.txt
테스트[성공 함]
python detect.py --weights yolov5s.pt --source 0
'기타' 카테고리의 다른 글
[디자인 패턴] Singleton (0) | 2024.05.19 |
---|---|
클래스 다이어 그램 [UML : Class Diagram] (0) | 2024.03.07 |
Privacy Policy (0) | 2024.03.03 |
[파이썬 / VSCode] AssertionError: Torch not compiled with CUDA enabled (0) | 2023.11.30 |
[구글]개발자 계정 사라짐 / 없어짐 / 비활성화 / 폐쇄 (0) | 2023.02.02 |