79729835

Date: 2025-08-08 13:49:06
Score: 1
Natty:
Report link

Instead of adding "input_shape" to your first layer ...
add Input(shape) as your first layer

classifer.add(keras.Input(shape=(11,)))

Then your layers

classifer.add(Dense(6, activation = 'relu'))

More about the sequential model here: https://keras.io/guides/sequential_model/

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohamed Abidou