Unsupervised learning and Visual Features Flashcards

1
Q

How does unsupervised learning work?

A

Cluster unsorted data based on similarities and patterns

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

How does K-means clustering work?

A

You want to group the data into K clusters. This is done by minimizing the sum of squares distance between each point and the nearst center.
You start by just guessing centers, and then check for all points. Update with new centers until convergence.

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

How does the Gaussian Mixture model work?

A

Is used for density estimation. Places a kernel on top of the datapoints (like convolution) and tries to fit the data to this kernel.

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

How does PCA (Principal Component Analysis) work?

A

PCA is a data compression algorithm (dimensionality reduction). It transfers data to new coordinates, with the greates variance being the first coordinate. Will “lose” some data, but the most important stuff is kept.

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

What are two kinds of Visual Features?

A
  • Hand crafted: You define a math formula and check
    which features fit. Can be split into global and local.
  • Learned: Checks the distribution of data, the algorithm
    “learns” what features are in the image.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What kinds of descriptors do we have?

A
  • SIFT
  • SURF
  • HOG
  • LBP
  • Motion Flow field
How well did you know this?
1
Not at all
2
3
4
5
Perfectly