7번째 줄:
7번째 줄:
=== InternalError: Failed to call ThenRnnForward with model config: [rnn_mode, rnn_input_mode, rnn_direction_mode]: ===
=== InternalError: Failed to call ThenRnnForward with model config: [rnn_mode, rnn_input_mode, rnn_direction_mode]: ===
아마 데이터가 너무 커서 발생하는 에러.
아마 데이터가 너무 커서 발생하는 에러.
+
이외.. 모델이 너무 크면 커널을 죽이기도 하던데.. 이건 딱히 뜨는 에러가 없어 모르겠다;;
이외.. 모델이 너무 크면 커널을 죽이기도 하던데.. 이건 딱히 뜨는 에러가 없어 모르겠다;;
+
+
=== AttributeError: module 'keras.utils' has no attribute 'Sequence' ===
+
에러의 원인은 모르겠다.. 버전문제인 듯한데.. 두 가지 방법이 있다.
+
+
# 버전이 낮은 경우 : pip install keras --upgrade
+
# <code>keras.utils.all_utils.Sequence</code>로 불러오기. <code>from keras.utils.all_utils import Sequence</code> 형태로.
+
+
[[분류:Keras]]