I am having an error regarding (Keras that does not support TensorFlow 2.0. We recommend using tf.keras, or alternatively, downgrading to TensorFlow 1.14.) any reco
tf.keras
You should only have to change the imports at the top:
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))