Challenge - 5 Problems
CV Applications Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Key CV Tasks in Autonomous Driving
Which of the following computer vision tasks is MOST critical for detecting pedestrians and other vehicles in autonomous driving?
Attempts:
2 left
💡 Hint
Think about what helps the car know where other objects are around it.
✗ Incorrect
Object detection finds and labels multiple objects with their locations, which is essential for safe navigation in autonomous driving.
❓ Predict Output
intermediate2:00remaining
Output Shape of Medical Image Segmentation Model
Given a 3D medical image input of shape (1, 128, 128, 64, 1) (batch, height, width, depth, channels), what is the output shape of a 3D U-Net model that predicts a binary mask for the same volume?
Computer Vision
import tensorflow as tf input_shape = (128, 128, 64, 1) inputs = tf.keras.Input(shape=input_shape) # Assume model outputs a binary mask with same spatial dims outputs = tf.keras.layers.Conv3D(1, 1, activation='sigmoid')(inputs) model = tf.keras.Model(inputs, outputs) print(model.output_shape)
Attempts:
2 left
💡 Hint
Check the Conv3D output filters and input shape.
✗ Incorrect
The Conv3D layer with 1 filter outputs a volume with the same spatial dimensions and 1 channel, matching the input shape except batch size.
❓ Model Choice
advanced2:00remaining
Best Model for Retail Shelf Product Recognition
Which model architecture is BEST suited for recognizing and localizing multiple products on a retail shelf image with many overlapping items?
Attempts:
2 left
💡 Hint
Look for a model that can find many objects quickly.
✗ Incorrect
YOLOv5 is designed for fast and accurate object detection, ideal for detecting many products in cluttered retail images.
❓ Hyperparameter
advanced2:00remaining
Choosing Hyperparameters for Autonomous Driving Segmentation
When training a semantic segmentation model for road scene understanding in autonomous driving, which hyperparameter adjustment MOST improves the model's ability to detect small objects like traffic signs?
Attempts:
2 left
💡 Hint
Small objects need detailed features and careful training.
✗ Incorrect
A smaller learning rate helps the model learn fine details steadily, and deeper layers capture complex features needed for small object detection.
❓ Metrics
expert2:00remaining
Evaluating Medical Image Segmentation Quality
A medical image segmentation model outputs masks for tumor regions. Which metric BEST measures the overlap quality between predicted and true tumor masks?
Attempts:
2 left
💡 Hint
Look for a metric that balances false positives and false negatives in segmentation.
✗ Incorrect
Dice coefficient measures overlap between two sets, balancing false positives and negatives, making it ideal for segmentation quality.