COMMENTARIUM


  • Home

  • Archives

  • About

Linear Regression

Posted on 2018-01-26 | In machine_learning

Introduction

temporary created in order to be referenced by other posts.

Read more »

Sequential Minimal Optimization Algorithm

Posted on 2018-01-25 | In machine_learning

Introduction

temporary created in order to be referenced by other posts.

Read more »

Perceptron and MLP

Posted on 2017-12-10 | In machine_learning

Perceptron

Assume that only the means(or centroids) $\mathbf{\mu}_1$ and $\mathbf{\mu}_2$ of the 2 distributions are known. To predict the class of a new point, we could compare the distances to those 2 class means. That is,

Read more »

EM Algorithm and Gaussian Mixture Model

Posted on 2017-11-23 | In machine_learning

Introduction to EM

Previously I talked about Naive Bayes Classifier. In that case, all variables are observable. However, sometimes there could be some latent variables in some models. EM(Expection-Maximization) algorithm could resolve those models containing latent variables.

Read more »

Bayes Classifier

Posted on 2017-11-22 | In machine_learning

General Idea

Generally speaking, to solve a classification problem, what we need to do is to get the optimal estimation on the posterior:
$$h(x) := \underset{c_k}{\arg \max} , P(Y=c_k|X=x) \tag{1}\label{eq:1}$$
There are 2 general methods to do this. First one is directly modeling the posterior based on training data and to do prediction based on that. This is called Discriminative Model, e.g., BP, LDA, SVM, etc. Another type is generative Models, which calculates $P(Y=c_k|X=x)$ using:
$$P(Y=c_k|X=x) := \frac {P(x,c_k)}{P(x)}\tag{2}\label{eq:2}$$
Naive Bayes Classifier is the second one.

Read more »

Backpropagation Algorithm

Posted on 2017-10-22 | In machine_learning

Feed-forward Network

Considering a basic network architecture, first a linear combination of input data $x_1, \ldots, x_D$:

Read more »
<i class="fa fa-angle-left"></i>12

21 posts
4 categories
RSS
© 2024 Zhiwei Liu
Powered by Hexo
|
Theme — NexT.Muse v5.1.4