Closed pentageonate closed 6 years ago
Line 228 in train.py uses a fixed value rather than reading the length of the nb_neurons array.
Changing the line to the following may be helpful as a suggestion: model.add(Dense(nb_neurons[len(nb_neurons) - 1], activation = activation))
Good catch - I made the change - thanks!
Line 228 in train.py uses a fixed value rather than reading the length of the nb_neurons array.
Changing the line to the following may be helpful as a suggestion: model.add(Dense(nb_neurons[len(nb_neurons) - 1], activation = activation))