(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))
TensorFlow 2.0+はKeras 2.3.0+とのみ互換性があるため、Keras 2.2.5-を使用する場合は、TensorFlow 1.15.0-が必要です。または、はい、できますfrom tensorflow.keras import ...
ですが、keras
パッケージはまったく使用されないため、アンインストールすることもできます。
同じ問題が発生しました。以下を使用してTensorFlowをバージョン1.14にダウングレードしました:
!pip install tensorflow==1.14.0
エラーを修正しました。
実行して問題を解決しました
pip install --ignore-installed --upgrade keras
最初のセルのこのコード行は私のために働きました
%tensorflow_version 1.x