C4W3 Flashcards

1
Q

Difference between classification with localisation vs object detection?

A

In object detection we have multiple objects

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

Explain YOLO algorithm?

A

YOLO stands for you only look once
1. Place grid onto your image
2. You should run your network once so it will output a 1x1xN vector for each grid cell

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

What is non max suppression?

A

Used to suppress multiple detection of the same object

Suppress regions (outputs) with less probability

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

When anchor boxes are used?

A

When you want to distinguish overlapping objects

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

What is regions proposal?

A

Use some clustering or another NN to propose regions to conv net

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

What is intersection over union?

A

Metric for evaluating correctness of the predicted region

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

How intersection over union works?

A
  1. Compute size of the intersection
  2. Divide by the size of the union
  3. The pred is correct if >=0.5
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is semantic segmentation?

A

When you want to classify each pixel on the image

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

Idea of semantic segmentation and U-Net (Unit-Net)

A

Use transpose conv, which blows up smaller inputs
Use symmetric skip connection from initial layers to the latest convoluted layers

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

Steps of non max suppression?

A
  1. Discard all the boxes with <threshold prob
  2. Discard any boxes with IOU >0.5 with boxes from step 1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly