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

导入categorical时报错,如下

在这里插入图片描述

解决方法:

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

你可能感兴趣的:(学习笔记,python)