...

/

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.

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: A Conv‘x’D is chosen based on the number of spatial axes in the input. Use Conv1D,
...