December 2017
Intermediate to advanced
536 pages
14h 23m
English
One easy and common choice is the so-called max-pooling operator, which simply outputs the maximum activation as observed in the region. In TensorFlow, if we want to define a max pooling layer of size 2 x 2, we will write the following:
tf.nn.max_pool(value, ksize, strides, padding, data_format='NHWC', name=None)
These are the arguments:
Read now
Unlock full access