반응형

아래와 같은 오류가 발생시

ImportError: cannot import name 'np_utils' from 'tensorflow.keras.utils'

 

패키지가 아래와 같이 되어 있다면

from tensorflow.keras.utils import np_utils

tesorflow.python.keras.utils 로 변경 해 주도록 하자.

from tensorflow.python.keras.utils import np_utils

+ Recent posts