Questions tagged «keras»

Keras是一个神经网络库,在Python和R中提供了高级API。对于与如何使用此API有关的问题,请使用此标签。还请包含您使用的语言/后端的标签([python],[r],[tensorflow],[theano],[cntk])。如果您正在使用tensorflow的内置keras,请使用[tf.keras]标签。

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 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.