You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

287 B

  1. This question is validated if the code that creates the neural network is:

    model = keras.Sequential()
    model.add(Dense(16, input_shape=(5,), activation= 'sigmoid'))
    model.add(Dense(8, activation= 'sigmoid'))
    model.add(Dense(5, activation= 'softmax'))