Gaussian Discriminant Analysis (GDA) — Gaussian Discriminant Analysis (GDA) is another generative learning algorithm that models p(x y) as a multivariate normal distribution. This means that: The cursive N symbol is used to represent this particular distribution, which represents a nasty looking density equation that is parameterized... Read more
—Hi, I'm VanessaSaurus, a Software Engineer.
Building tools, containers, and cloudy things, with a penchant for Python and parsnips. -- about me
Raaawwr..!
Image Registration — When we talk about registration, we are talking about a transform of one image into another image’s space by way of transforms. What does this mean exactly? If each image is a matrix of numbers, the “transform” is another matrix that... Read more
—Generalized Linear Models (GLM) — If you think of regression (e.g., linear with gaussian distributions) and classification (logisitic with bernoulli) as cousins, they belong under the larger family of General Linear Models. A GLM is a broad family of models that can all be simplified to a... Read more
—Laplace Smoothing — Why do we need Laplace Smoothing? Let’s return to the problem of using Naive Bayes to classify a recipe as “ice cream”(1) or “sorbet” (2) based on the ingredients (x). When we are calculating our posterior probabilities, or the probability... Read more
—