October 2018
Intermediate to advanced
252 pages
6h 49m
English
It is recommended by the Keras documentation to leave the parameters of this optimizer at their default values.
Let's take a look at the arguments used to initialize this optimizer:
model = Sequential()model.add(Dense(512, activation='relu', input_shape=(784,)))model.add(Dropout(0.2))model.add(Dense(512, activation='relu'))model.add(Dropout(0.2))model.add(Dense(num_classes, activation='softmax'))model.summary()ada_delta = keras.optimizers.Adadelta(lr=1.0, rho=0.95, epsilon=None, ...