Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 텐서플로우
- YOLO
- 물체검출
- python
- 설치
- tensorflow
- openpose
- Tistory
- 엔비디아
- openCV
- 영상처리
- cuda
- Jetson
- agx
- ubuntu
- 방법
- Darknet
- Linux
- Xavier
- 애드센스
- Windows
- 라즈베리파이
- 파이썬
- GPU
- DNN
- 블로그
- tx2
- 티스토리
- Nvidia
- 딥러닝
Archives
엔지니어스 - Engineeus
from sklearn.utils.linear_assignment_ import linear_assignmentModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_' 본문
Autonomous Tech./Error (Windows & Ubuntu)
from sklearn.utils.linear_assignment_ import linear_assignmentModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_'
Engineeus 2021. 8. 23. 19:11728x90
from sklearn.utils.linear_assignment_ import linear_assignment
ModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_'
<problum is>
from sklearn.utils.linear_assignment_ import linear_assignment
<solution>
from scipy.optimize import linear_sum_assignment as linear_assignment
<if anotion error with sort.py>
sort.py", line 149, in associate_detections_to_trackers
if(d not in matched_indices[:,0]):
TypeError: tuple indices must be integers or slices, not tuple
follow below post
https://mickael-k.tistory.com/215
'Autonomous Tech. > Error (Windows & Ubuntu)' 카테고리의 다른 글
install virtual box iso (sudo apt-get install virtualbox-guest-additions-iso) (0) | 2021.09.28 |
---|---|
TypeError: tuple indices must be integers or slices, not tuple (0) | 2021.08.23 |
우분투 시리얼 포트 접근 권한 얻기 (Permission denied) (0) | 2021.07.16 |
ModuleNotFoundError: No module named 'skimage (0) | 2021.07.15 |
ImportError: The _imagingft C module is not installed in xavier (0) | 2021.07.08 |
Comments