-
Notifications
You must be signed in to change notification settings - Fork 11
Algorithms
isthegedus edited this page Sep 5, 2012
·
2 revisions
What kind of data mining algorithms were implemented.
-
The update method
Input: x, y y' = w * x nu = 1 / (lambda * t) w(t+1) = (1 - 1/t) * w(t) if (y' * y < 1) w(t+1) += nu * y * x t ++ -
The label prediction
Input: x return (w * x < 0) ? -1 : 1
- ConstantLearner
- SigmoidStumpLearner
- AdalineLearner
- ProductLearner
- SequentialLearner