- 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 |
- tx2
- DNN
- 방법
- 영상처리
- openCV
- 애드센스
- Nvidia
- 블로그
- 설치
- ubuntu
- 라즈베리파이
- Linux
- YOLO
- agx
- cuda
- Darknet
- Tistory
- tensorflow
- openpose
- GPU
- Xavier
- 물체검출
- 티스토리
- 텐서플로우
- Jetson
- Windows
- 파이썬
- python
- 엔비디아
- 딥러닝
엔지니어스 - Engineeus
from sklearn.utils.linear_assignment_ import linear_assignmentModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_' 본문
from sklearn.utils.linear_assignment_ import linear_assignmentModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_'
Engineeus 2021. 8. 23. 19:11from 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
TypeError: tuple indices must be integers or slices, not tuple
TypeError: tuple indices must be integers or slices, not tuple sklearn.utils.linear_assignment_ was replaced with scipy.optimize.linear_sum_assignment since the latter was pruned in the..
mickael-k.tistory.com
'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 |