Vorlesung 6 Flashcards

1
Q

Wie unterscheiden sich Feature-Selektion und -Extraktion?

A

Selektion: optimale Featureteilmenge durch objektive Funktion
Extraktion: Mapping hochdim. auf niedrigdim. Raum

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

Wie funktioniert die Feature-Seletkion?

A

ein Feature ist praktisch, falls es Klassen trennt, dazu teste
| mean(A) - mean(B) | / SE(A-B) > Threshold
mit SE(A-B) = sqrt(var(A)/n_A + var(B)/n_B)

  1. Filtermethode: basiert auf generellen Infos (kein Bias)
  2. Wrapper-Methoden: basieren auf Klassifikationsalgorithmus, predictive accuracy als Maß
    -> zusammen: Embedded
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Was fällt dir zu Korrelationsanalyse ein?

A

Berechnung Korrelationskoeffiziente (Pearson)
r_AB = Cov(A,B) / (σ_Aσ_B)

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

Welche Methoden gibtes bei der Datentransformation?

A

Fourier-Analyse (Signal -> Frequenzraum), Normalisierung (Min-Max, Z-Score), Featurekonstruktion (neue Features)

Beispiele:
neue Features: BMI = K * F(Gewicht, Größe)
Smoothing: 0,93 -> 1

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

Gib 4 Normalisierungsmethoden an

A
  1. Min-Max
    v’ = (v - min_A) / (max_A - min_A)
  2. Z-Score
    v’ = (v - μ_A) /σ_A
  3. Whitening
    v’ = kein Bock dier Formel hier hinzuschreiben, die kommt sowieso net dran
  4. Decimal scaling
    v’=v/10^j
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Welche drei Schritte hat der Algorithmus bei PCA

A
  1. berechne Kovarianzmatrix
  2. berechne, sortiere Eigenwert
  3. Eigenvektoren bilden Hauptkomponentenachse
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Wie sind die Eigenwerte der Kovarianzmatrix?

A

positiv, da SPD

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

Was passiert bei wiederholter Multiplikation mit der Kovarianzmatrix?

A

Drehung in Richtung Hauptkomponentenachse

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