April 2017
Intermediate to advanced
318 pages
7h 40m
English
A dense model is a fully connected neural network layer. We have already seen examples of usage in Chapter 1, Neural Networks Foundations. Here is the prototype with a definition of the parameters:
keras.layers.core.Dense(units, activation=None, use_bias=True, kernel_initializer='glorot_uniform', bias_initializer='zeros', kernel_regularizer=None, bias_regularizer=None, activity_regularizer=None, kernel_constraint=None, bias_constraint=None)