728x90
반응형
SMALL
from keras.models import Sequential
from keras.layers import LSTM,Dropout,Dense
위 코드를 아래 코드로 변경하면 해결된다.
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import LSTM,Dropout,Dense
728x90
반응형
LIST
'Python Library > Keras' 카테고리의 다른 글
[Keras] 배치 정규화 (Batch Normalization) (0) | 2022.07.31 |
---|---|
[Keras] Functional 모델 (0) | 2022.07.30 |
[Keras] Model.evaluate 함수 (0) | 2022.01.04 |
[Keras] Model.fit 함수 (0) | 2022.01.04 |
[Keras] model / weight 저장 및 불러오기 (0) | 2021.12.21 |