6
不支持TensorFlow 2.0的Keras。我们建议使用`tf.keras`,或降级为TensorFlow 1.14
我有一个关于tf.keras任何建议的错误(不支持TensorFlow 2.0的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 …