...
/Constructing an Optimized Baseline Convolutional Network
Constructing an Optimized Baseline Convolutional Network
Learn how to build a baseline convolutional network with a strategic swap of pooling and activation.
We'll cover the following...
Baseline network
Construct a simple sequential baseline model with layer structure as shown below. Note to swap activation and pooling layers.
Press + to interact
Convolution layer
Conv1D
vs.Conv2D
vs.Conv3D
: AConv‘x’D
is chosen based on the number of spatial axes in the input. UseConv1D
,