학습된 모델을 불러올 경우,
model = tf.keras.models.load_model("model.h5")
위와같은 코드를 사용한다.
하지만 AttributeError: 'str' object has no attribute 'decode' 라는 에러가 나는 경우가 있다.
h5py가 3 버전일 때에 발생하는 에러이며, 에러를 해결하는 방법으로 h5py를 2버전으로 다운그레이드 해준다.
pip install h5py==2.10.0
'DL(Deep-Learning) > Tensorflow' 카테고리의 다른 글
[TF Hub] 전이학습 Transfer Learning (0) | 2022.01.30 |
---|---|
[TF Hub] 사전 훈련된 모델 사용하기 (0) | 2022.01.29 |
[Keras] callback 함수 - ReduceLROnPlateau (0) | 2022.01.25 |
[Keras] callback 함수 - EarlyStopping (0) | 2022.01.25 |
[Mac M1] Tensorflow 설치 방법 (0) | 2022.01.24 |