]> granicus.if.org Git - liblinear/commit
In train_one we specify max_iter of dual solvers to be 300, but
authorChih-Jen Lin <cjlin@csie.ntu.edu.tw>
Wed, 4 Nov 2020 07:20:10 +0000 (15:20 +0800)
committerChih-Jen Lin <cjlin@csie.ntu.edu.tw>
Wed, 4 Nov 2020 07:20:10 +0000 (15:20 +0800)
commit02acaf9a125837792438b172a06cc4f37b7d3755
tree6667bc761b69991ed25249afcd69889a33b60ec9
parente9037b834282da69b6f182e17129e1c30f954e9b
In train_one we specify max_iter of dual solvers to be 300, but
the default max_iter in function definition was 500.
For example,

static int solve_l2r_l1l2_svc(const problem *prob, const parameter *param, double *w, double Cp, double Cn, int max_iter=500)

Now 500 is changed to 300 to reflect what we really used.
linear.cpp