Processing math: 100%

Wednesday, 13 March 2013

Machine learning

Perceptron

Repeat until convergence:
For t = 1 ... n
  1. y = sign(x_tθ_)
  2. If yyt Then θ_=θ_+ytx_t, Else leave θ_ unchanged.

Kernel form of the perceptron

  • Definition: for any x_, define g(x)=nj=1αjyjK(x_j,x_) where K(x_j,x_)=ϕ(x_j)ϕ(x_)
  • Repeat until convergence:
    • For t = 1 ... n
      1. y' = sign(g(x_t)
      2. If yyt Then αt=αt+1

No comments :

Post a Comment