Changes between Version 2 and Version 3 of tutorial/ProbabilisticLearningModels
- Timestamp:
- 05/25/09 11:58:14 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
tutorial/ProbabilisticLearningModels
v2 v3 1 2 == Tutorial About Probabilistic Learning Models == 1 = Tutorial About Probabilistic Learning Models = 3 2 4 3 Benjamin Adrian, Gunnar Grimnes, Jörn Hees, Matthias Sperber 5 4 6 5 7 == = Abstract ===6 == Abstract == 8 7 9 8 10 === Introduction === 9 == Introduction == 10 Classification in general is the problem of deciding for a given input to which class it belongs. Usually classification can be subdivided into a learning phase (aka training phase) and a classification phase (aka test phase). (TODO: offline, online, reinforcement, ... learning) 11 11 12 === = Relational Classification ====12 === Relational Classification === 13 13 14 ===== Naive Bayes ===== 14 ==== Nearest Neighbor (1-NN or NN) ==== 15 Nearest Neighbor classifiers are classifiers of the most simple kind. In the training phase they simply record the class for each sample. Later in the classification phase they calculate the distances of the query to all samples in their records and return the class of the sample which is closest to the query. 15 16 16 Naive bayes r0xx0rz. 17 ===== $k$NN ===== 18 The $k$-Nearest Neighbor classifier is a generalization of the simple NN, which does not immediately return the single "best match" sample's class, but inspects the nearest $k$ samples to the query and returns a class depending on a merging function, such as: 19 * most often observed class 20 * classes weighted by inverse distances 17 21 18 ===== Maximum Entropy =====19 22 20 ===== Multi Layer Perceptrons ===== 23 ==== Naive Bayes ==== 24 Naive Bayes Classificators are 21 25 22 ==== = Support Vector Machines =====26 ==== Maximum Entropy ==== 23 27 24 ==== Sequential Classification====28 ==== Multi Layer Perceptrons ==== 25 29 26 ==== = Hidden Markov Model =====30 ==== Support Vector Machines ==== 27 31 28 ===== Conditional Random Field ===== 32 === Sequential Classification === 33 34 ==== Hidden Markov Model ==== 35 36 ==== Conditional Random Field ==== 37 38 39 == Appendix == 40 === Mathematical Foundations === 41 ==== Bayes Rule ==== 42 {{{ 43 #!latex 44 $P(A|B) = \frac{P(B|A) \cdot P(A)}{P(B)}$ 45 }}}