tania
tania

Reputation: 67

About downsampling in Unet segmentation architecture

Downsampling helps to reduce the shape but why downsampling is needed in Unet segmentation architecture?

Upvotes: 0

Views: 2059

Answers (1)

JoOkuma
JoOkuma

Reputation: 492

Most of modern convolution neural network architectures use max-pooling to downsample (such as U-Net), not depending only on the stride to achieve this because pooling introduces a small location invariance to the network architecture and is faster to compute.

This might provide you more information.

Upvotes: 3

Related Questions