0
0
Computer Visionml~5 mins

U-Net architecture in Computer Vision - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the main purpose of the U-Net architecture in machine learning?
U-Net is mainly used for image segmentation, which means dividing an image into meaningful parts or regions, like separating objects from the background.
Click to reveal answer
beginner
Describe the general shape and structure of the U-Net architecture.
U-Net has a U-shaped structure with two parts: a contracting path (encoder) that captures context by shrinking the image, and an expanding path (decoder) that recovers spatial details to produce a segmented output.
Click to reveal answer
intermediate
What role do skip connections play in U-Net?
Skip connections link layers from the contracting path to the expanding path, helping the model keep important details lost during shrinking, which improves segmentation accuracy.
Click to reveal answer
intermediate
How does the contracting path in U-Net process the input image?
The contracting path uses repeated convolution and pooling layers to reduce the image size while extracting important features, similar to zooming out to see the bigger picture.
Click to reveal answer
beginner
What is the output of a U-Net model?
The output is a segmented image where each pixel is classified into a category, showing which part of the image belongs to which object or background.
Click to reveal answer
What is the main task U-Net is designed for?
AImage generation
BImage segmentation
CObject detection
DImage classification
What does the 'U' shape in U-Net represent?
AThe shape of the input images
BThe shape of the output mask
CThe structure with contracting and expanding paths
DThe shape of the loss curve
Why are skip connections important in U-Net?
AThey help recover spatial details lost during downsampling
BThey reduce the number of parameters
CThey speed up training
DThey add noise to the model
Which operation is commonly used in the contracting path of U-Net?
ADropout
BUpsampling
CBatch normalization only
DPooling
What does the output of U-Net represent?
AA segmented image with pixel-wise labels
BA compressed version of the input
CA single label for the whole image
DA generated new image
Explain the main components and flow of data in the U-Net architecture.
Think about how the network shrinks and then grows the image representation.
You got /4 concepts.
    Describe why skip connections are used in U-Net and how they improve the model's performance.
    Consider what information might be lost during downsampling.
    You got /3 concepts.