Skip to content

Commit

Permalink
change the default LBFGS parameters in order to be consistent with th…
Browse files Browse the repository at this point in the history
…e document
  • Loading branch information
yorkerlin committed Mar 18, 2014
1 parent f17b291 commit b629a0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shogun/optimization/lbfgs/lbfgs.cpp
Expand Up @@ -94,10 +94,10 @@ struct tag_iteration_data {
typedef struct tag_iteration_data iteration_data_t;

static const lbfgs_parameter_t _defparam = {
6, 1e-5, 0, 1e-5,
0, LBFGS_LINESEARCH_DEFAULT, 40,
6, 1e-5, 0, 0.0,
0, LBFGS_LINESEARCH_DEFAULT, 20,
1e-20, 1e20, 1e-4, 0.9, 0.9, 1.0e-16,
0.0, 0, -1,
0.0, 0, 1,
};

/* Forward function declarations. */
Expand Down

0 comments on commit b629a0a

Please sign in to comment.