当导入:from keras.utils import to_categorical时
会报错:ImportError: cannot import name 'to_categorical'
这是因为该方法被迁移到了tensorflow中,
可以改为: from tensorflow.keras.utils import to_categorical
当导入:from keras.utils import to_categorical时
会报错:ImportError: cannot import name 'to_categorical'
这是因为该方法被迁移到了tensorflow中,
可以改为: from tensorflow.keras.utils import to_categorical