|
517 | 517 | "\n", |
518 | 518 | "| Classifier | Biases and Assumptions | Separatrices | Sensitivity | Locality | Parameters | Speed |\n", |
519 | 519 | "|----------------------|------------------------|--------------|-------------|----------|------------|-------|\n", |
520 | | - "| Euclidean classifier | ? | linear | sensitive to far outliers | global | none | very fast |\n", |
| 520 | + "| Euclidean classifier | voronoi tesselation around class centers | linear | sensitive to far outliers | global | none | very fast |\n", |
521 | 521 | "| Linear discriminant analysis | normally distributed data with equal covariances | linear | sensitive to far outliers | global | none | very fast |\n", |
522 | 522 | "| Quadratic classifier (e.g. QDA) | ? | conic: e.g. hyperbola, parabola, ellipsis, line | sensitive to outliers | global | none | fast |\n", |
523 | 523 | "| Polynom classifier | ? | almost arbitrary | overfitting for high degrees | global | polynomial degree | fast |\n", |
524 | | - "| Nearest neighbor classifier | ? | implicit: neighbors (voronoi cells around training data) | distance function | local | number of neighbors $k$ | $\\mathcal{O}(N)$ (instant training, linear classification) |\n", |
525 | | - "| Bayesian classifier | ? | discriminate functions (probability distributions) | overlapping classifications (only probabilities), noise is modeled | global | none | varies (underlying data and method for discriminate functions, see ML-09 Slides 5f) |\n", |
| 524 | + "| Nearest neighbor classifier | classification for neighbors are similar | implicit: neighbors (voronoi cells around training data) | distance function | local | number of neighbors $k$ | $\\mathcal{O}(N)$ (instant training, linear classification) |\n", |
| 525 | + "| Bayesian classifier | expected cost is minimized | discriminate functions (probability distributions) | overlapping classifications (only probabilities), noise is modeled | global | none | varies (underlying data and method for discriminate functions, see ML-09 Slides 5f) |\n", |
526 | 526 | "| MLP (not necessarily binary) | smooth interpolation | almost arbitrary | noise sensitive | global | activation functions, learning rate | slow |\n", |
527 | 527 | "| RBFN (not necessarily binary) | locality in data/clusters | ellipses/circular | robust to noise | local | regions of responsibility, learning rate | comparably slow |\n", |
528 | 528 | "| SVM | mercer's condition, input mapping, kernel function | high dimensional hyperplane, nonlinear in data space | handles noise with slacking variables | global | none | efficient |" |
|
0 commit comments