Object detection Flashcards

1
Q

Name some difficulties associated with object detection in images

A

Objects may appear in different poses
Cluttered scenes with occlusions
Intrinsic variability within a class
Non-rigid objects like humans

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

What are the steps in Dalal-triggs pedestrian detection algorithm

A
  1. Extract windows of 64x128 in all relevant positions and scales.
  2. Compute HoG
  3. Use support vector machine to score the window
  4. Remove non-max overlapping detections
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Name some important properties of the non-linear functions used in deep learning

A

Good gradients,

efficient

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

What is the field of vision regarding Convo nets?

A

The field of vision for a node is the input nodes that affect the given node in any way.

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

What is the Relu

A

A function, f(x) = max(0,x)

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

What might be the problem if a neural net doesn’t train?

A
  1. If the input to the layer (The gradient) is zero, that layer won’t train
  2. If the weights to a layer are zero, no layer before the layer will change.
  3. If many layers have weights with norm smaller than one, the change will get smaller and smaller
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What solutions might be implemented in a neural net to resolve the problem of diminishing training as we go back through the layers?

A
  1. Batch normalization
  2. ResNet/ Skip connections
  3. Good weight initialization
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is the softmax activation function often used in the last layer for classification problems?

A

The sum of all outputs will be equal to 1 with the softmax, which means the output values can be interpreted as “probabilities” for an object belonging to each class.

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