Image Classification Flashcards

1
Q

What is image classifcation?

A

Given an input image, assign image to one of a fixed set of categories

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

What are the 6 challenges of image recognition?

A

The images could look different because of

  1. Viewpoint changes (take from different angles, side, front, back)
  2. Illumination (day, night, different lighting)
  3. Deformation (shape of object may shape)
  4. Occlusion (part of the object may be hidden)
  5. Clutter (object may blend with background)
  6. . Variation within class
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a straightforward example of data-driven approach towards image recognition?

A

kNN approach

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

Why is kNN approach is not useful?

A

It is fast to train but slow in test. The direct opposite of an ideal algorithm

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

How can you remove the noisy decision boundaries of kNN

A

By increasing the value of N is KNN.

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

Why is there to split the dataset into train, validation and test?

A

Train - Model training
Validation - Tune the hyperparameter
Test - evaluate the model with tuned hyperparameter

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

What is cross-fold validation?

A

Split the training set into multiple partitions and test and validate on each partitions.

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