Keras Deep Learning Cookbook
上QQ阅读APP看书,第一时间看更新

Model compilation internals

Let's look at what happens behind the scenes when model.compile() is called.

Get the optimizer depending on the Backend

Here is a list of the optimizers supported:

all_classes = {
'sgd': SGD,
'rmsprop': RMSprop,
'adagrad': Adagrad,
'adadelta': Adadelta,
'adam': Adam,
'adamax': Adamax,
'nadam': Nadam,
'tfoptimizer': TFOptimizer,
}