1. How does convolution use image structure, and what evidence shows that a compact CNN helps?
Standard answer: A strong answer connects the central idea to a visible computation and a held-out or shape-based check. Architecture surveys and large downloads remain optional.
2. What does locality and sharing mean here?
Standard answer: A convolution reuses one small kernel across positions. This reduces parameters and encodes the assumption that a useful local pattern may appear in different locations.
3. Why is shape through the network useful?
Standard answer: Convolution, activation, and pooling change channels and spatial resolution in predictable ways. Calculate each shape before connecting the classifier head.
4. How should you interpret controlled comparison?
Standard answer: Architecture is not evidence by itself. A CNN should be compared with a simple image baseline using the same data, split, preprocessing, budget, and metric.
5. What does the main equation clarify—and what does it not prove?
Standard answer: Input height H, padding P, kernel size K, and stride S determine the number of vertical filter positions. Width follows the same rule. It does not by itself prove useful behavior on unseen intended-use cases.
6. What should change when you move the explorer controls?
Standard answer: The visible calculation and interpretation should change together. Predict the direction first, then use the result to correct your mental model.
7. What is the first hands-on check you should perform?
Standard answer: Represent images as batch × channel × height × width.
8. How can you detect the failure called “Channel order confusion”?
Standard answer: Print the batch × channel × height × width shape.
9. What evidence should be recorded before making a claim?
Standard answer: Record data and split assumptions, input/output shapes, settings, the baseline, held-out metrics, representative failures, and the decision supported by that evidence.
10. How does this week prepare the next topic?
Standard answer: Week 10 is reserved for both classes of PBL1 presentations. Week 11 then compresses simple RNN and LSTM concepts into one sequence-model week.