C3 Flashcards

1
Q

PCA

A

Principal Component Analysis:
given n variables x1, …, xn, PCs are linear combinations x1, …, xn such that
1. they are orthogonal to each other
2. they maximize the variance of projections
3. the first PC explains most of the variance, the second PC less

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

Metric Multi-Dimensional Scaling

A

Given n points p1 … pn (in highly dimensional space),
find a mapping p_i -> q_i (q in low dimensional space) that preserves the original distances as much as possible:
dist(p_i, p_j) = dist(q_i, q_j) for all i, j
Total error = sum((dist(p_i, p_j) – dist(q_i ,q_j)^2)

minimize the total error

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

LLE

A

Locally Linear Embeddings:
often, interesting data lives in highly dimensional spaces, but we want to see it in low dimensions

  • for each object Xi, find a few neighbouring objects
  • measure distances between Xi and these neighbours
  • find Yi in low dimensional space that preserves all mutual distances => optimization problem
How well did you know this?
1
Not at all
2
3
4
5
Perfectly