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

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Mar 5 22:14:46 EST 2015


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

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/904762495c039e345beba14c1142fd719b3bd50e...f94823c800ad6f7266995c700b1b630d5ffdcf40

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

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

    Set the default starting penalty to 10


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

0801db6bb4147c0083478776e92024352d97b935
 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