在 ‘__init__.py‘ 中找不到引用 ‘to_categorical‘

解决方法


from keras.utils import to_categorical
改为:
from tensorflow.keras.utils import to_categorical
即可

你可能感兴趣的:(机器学习,&&,人工智能,keras,深度学习,tensorflow)