我有一个关于任何建议的错误(不支持TensorFlow 2.0的Keras。我们建议使用tf.keras
或将其降级为TensorFlow 1.14。)。
谢谢
import keras
#For building the Neural Network layer by layer
from keras.models import Sequential
#To randomly initialize the weights to small numbers close to 0(But not 0)
from keras.layers import Dense
classifier=tf.keras.Sequential()
classifier.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))
RuntimeError: It looks like you are trying to use a version of multi-backend Keras that does not support TensorFlow 2.0. We recommend using `tf.keras`, or alternatively, downgrading to TensorFlow 1.14.
最佳答案
您只需要在顶部更改导入:
from tensorflow.python.keras.layers import Dense
from tensorflow.python.keras import Sequential
classifier = Sequential()
classifier.add(Dense(6, init = 'uniform', activation = 'relu', input_dim = 11))
关于python - 不支持TensorFlow 2.0的Keras。我们建议使用`tf.keras`,或者降级为TensorFlow 1.14,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59090404/