반응형
pickle 파일을 사용할 때나 txt 파일을 불러올 때 발생하는 오류다. byte로 받아오라는 에러 코드라 아래 코드로 변경하면 에러가 발생하지 않는다.
path = 'base directory'
with open(path, 'r') as f:
files = pickle.load(f)
# 'r' -> 'rb'
with open(path, 'rb') as f:
files = pickle.load(f)
'Python' 카테고리의 다른 글
[Python] 패키지 버전 확인하기 with code (0) | 2023.12.27 |
---|---|
[Wandb] Wandb 사용법 + Sweep with Pytorch (1) | 2023.12.21 |
[Pandas] Pandas에서 tqdm 사용하기 (0) | 2022.07.06 |
numpy array 구조를 image로 저장하기 (0) | 2022.06.01 |
[Python] ConnectionResetError (request) (0) | 2022.04.27 |