Answers for "how to create a pooling layers in a CNN"

2

how to create a pooling layers in a CNN

# assuming you're using tenserflow keras
tf.keras.layers.MaxPooling2D(2, 2) # the (2, 2) quarters the size of the image
Posted by: Guest on October-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language