파이썬/Error Solution

[Error Solution] attributeerror 'str' object has no attribute 'decode'

컴공돌이​ 2022. 6. 19. 12:28

attributeerror 'str' object has no attribute 'decode'

keras.models.load_model() 함수를 사용하여 저장한 keras 모델을 불러올 때 해당 에러가 발생하였습니다.

검색 결과 h5py 라이브러리와 관련된 에러라고 합니다.

먼저 h5py 라이브러리가 설치되어있는지 확인을 해본 후, 만약 설치가 되어 있지 않았다면 "pip install h5py==2.10.0"를 통하여 설치를 해주면 에러가 해결됩니다.

만약 이미 설치가 되어 있고 버전이 3점때라면 이때는 "pip install h5py==2.10.0 --force-reinstall"를 통하여 다운그레이드를 진행해주면 에러가 해결됩니다.

 

python version: 3.7.13

반응형