Dev/Bug + Error

[Keras] cannot import name 'to_categorical' from 'keras.utils'

cannot import name 'to_categorical' from 'keras.utils' 

오류 발생

 

해결책:

from keras.utils import to_categorical
# 대신
from tensorflow.keras.utils import to_categorical
728x90