Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit 2646a0f

Browse files
committed
classifier table
1 parent dcc0680 commit 2646a0f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sheet11/sheet11solutions.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,12 +517,12 @@
517517
"\n",
518518
"| Classifier | Biases and Assumptions | Separatrices | Sensitivity | Locality | Parameters | Speed |\n",
519519
"|----------------------|------------------------|--------------|-------------|----------|------------|-------|\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",
521521
"| Linear discriminant analysis | normally distributed data with equal covariances | linear | sensitive to far outliers | global | none | very fast |\n",
522522
"| Quadratic classifier (e.g. QDA) | ? | conic: e.g. hyperbola, parabola, ellipsis, line | sensitive to outliers | global | none | fast |\n",
523523
"| 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",
526526
"| MLP (not necessarily binary) | smooth interpolation | almost arbitrary | noise sensitive | global | activation functions, learning rate | slow |\n",
527527
"| RBFN (not necessarily binary) | locality in data/clusters | ellipses/circular | robust to noise | local | regions of responsibility, learning rate | comparably slow |\n",
528528
"| 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

Comments
 (0)