[mlpack-git] master: Set the default starting penalty to 10 (5b12524)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Jan 29 00:33:37 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/9b55e5e4a300972d01cf1cf2802df8bf392a1fd1...b2575360e76877d7de615cd3d44b7f279565ce74

>---------------------------------------------------------------

commit 5b12524873ebf48149d2c422d3022eb20b274246
Author: Stephen Tu <tu.stephenl at gmail.com>
Date:   Thu Jan 1 19:46:00 2015 -0800

    Set the default starting penalty to 10


>---------------------------------------------------------------

5b12524873ebf48149d2c422d3022eb20b274246
 src/mlpack/core/optimizers/lrsdp/lrsdp.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mlpack/core/optimizers/lrsdp/lrsdp.cpp b/src/mlpack/core/optimizers/lrsdp/lrsdp.cpp
index 636224e..cff6d0c 100644
--- a/src/mlpack/core/optimizers/lrsdp/lrsdp.cpp
+++ b/src/mlpack/core/optimizers/lrsdp/lrsdp.cpp
@@ -20,7 +20,7 @@ LRSDP::LRSDP(const size_t numSparseConstraints,
 
 double LRSDP::Optimize(arma::mat& coordinates)
 {
-  augLag.Sigma() = 20;
+  augLag.Sigma() = 10;
   augLag.Optimize(coordinates, 1000);
 
   return augLag.Function().Evaluate(coordinates);



More information about the mlpack-git mailing list