UNets
A U-Net is a convolutional neural network architecture that was originally developed for biomedical image segmentation. Its distinctive feature is a symmetric encoder-decoder structure, resembling the shape of the letter "U". The encoder path, also known as the contracting path, progressively downsamples the input image through a series of convolutional and pooling layers, capturing contextual information. The decoder path, or expansive path, then progressively upsamples the feature maps while concatenating them with feature maps from the corresponding layers in the encoder path. This concatenation helps to recover fine-grained spatial details lost during downsampling, which is crucial for precise segmentation.
The skip connections, which link encoder and decoder layers, are a key innovation of the U-Net. These