Common network architectures Flashcards

(10 cards)

1
Q

Inception: State the multiplication cost for one convolution path and why bottlenecks help.

A

Mults = H·W·C·K²·F. 1×1 bottlenecks cut C, slashing FLOPs before larger kernels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ResNet: Write the residual output equation and its purpose.

A

y = F(x) + x. Lets the block learn a residual; identity mapping is easy so very deep nets avoid degradation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Precision formula and plain‑language meaning.

A

Precision = TP / (TP + FP): fraction of predicted boxes that are correct.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Recall formula and plain‑language meaning.

A

Recall = TP / (TP + FN): proportion of ground‑truth objects the detector finds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Difference between precision and recall in one sentence.

A

Precision asks ‘How many predictions are right?’; recall asks ‘How many real objects did I catch?’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why use 1×1 convs before 3×3/5×5 in Inception modules?

A

They reduce channel depth, lowering compute while keeping representational power.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do residual skips help gradient flow?

A

They create a direct path so gradients bypass deep stacks, making optimisation easier for very deep networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Give the IoU formula and common TP threshold.

A

IoU = overlap area / union area; a detection is TP if IoU ≥ 0.5.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define AP and mAP briefly.

A

AP = area under precision‑recall curve for one class; mAP = mean AP over all classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Conv output size formula (no padding) and example for 28×28, F=3, S=2.

A

H_out = ⌊(H_in−F)/S⌋+1 ⇒ ⌊(28−3)/2⌋+1 = 13.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly