컴퓨터 비전

Python 인코딩 에러 및 기타 에러

도그사운드 2023. 11. 3. 15:25

사용자 정의 패키지 설치시의 문제

Github에서 clone을 뜬 패키지의 경우 설치할때 setup.py를 실행하게 된다. 

설치된 폴더에서 pip install -e . 을 실행하면 된다.

-e 는 editible 편집가능한, 즉 패키지 수정이 가능하다는 의미

 

인코딩 문제

UnicodeDecodeError: 'cp949' codec can't decode byte 0xf0 in position 19: illegal multibyte sequence

위와 같은 에러가 발생한다면 인코딩 문제이다.

read_text()와 같은 데이터 입력출 코드를 수정해야 한다.

read_text(encoding='utf-8')과 같은 형태로 수정해줄 필요가 있다.

 

페이퍼에 대한 코드 탐색

https://paperswithcode.com/sota/visual-object-tracking-on-trackingnet

 

Papers with Code - TrackingNet Benchmark (Visual Object Tracking)

The current state-of-the-art on TrackingNet is MixViT-L(ConvMAE). See a full comparison of 27 papers with code.

paperswithcode.com

 

최근 동향

https://arxiv-sanity-lite.com/

 

arxiv-sanity

 

arxiv-sanity-lite.com

 

 

모델별 코드

https://modelzoo.co/

 

https://modelzoo.co/

 

modelzoo.co

 

'컴퓨터 비전' 카테고리의 다른 글

위성영상 데이터 다루기  (0) 2024.07.19
Cuda 가동여부 확인 및 YOLO 실행  (0) 2024.04.30
Image Segmentation 코딩  (1) 2023.10.18
Vehicle Counting  (0) 2023.10.15
YOLO 트레이닝, roboflow  (0) 2023.10.09