Boosting Flashcards

1
Q

Adaboost

A
  • Forest of trees (stumps, 1 root, 2 leaves)
    • stump: week learner (this is what we want)
    • stumps get weights
    • stumps influences each other (1. influence 2., 2. influence 3.). each stump is created by taking mistakes of previous into account
  • how to creat ada boost
    • samples get weighted
    • make first stump (lowest gini index)
    • weight stump: calc form total error: sum of weights of incorrecly classified samples
    • updating weights: increase weights of incorrectly classified samples (weighted by stump weighst), decrease sample weights of correctly classified samples
    • normalize weights: sum of weights = 1
    • second stump: calc weighted gini index or new data set with duplicate copies of samples with largest sample weights, then give them all same sample weights
  • How to make classifications
    • sum amounts of say for group of stumps that say 1 or 0
  • *
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Hard margin / soft margin

A
  • hard margin: sensitive to noise
  • soft margin: mistrust bad points
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly