Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
Merge pull request #272 from kdbanman/GH-271
Browse files Browse the repository at this point in the history
Fix one class svm to use shrinking heuristics.
  • Loading branch information
cesarsouza authored Aug 25, 2016
2 parents 2efad36 + 2c15e07 commit c944de0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public TModel Learn(TInput[] x, double[] weights = null)
var s = new FanChenLinQuadraticOptimization(alpha.Length, Q, zeros, ones)
{
Tolerance = eps,
Shrinking = true,
Shrinking = this.shrinking,
Solution = alpha
};

Expand Down

0 comments on commit c944de0

Please sign in to comment.