Home
last modified time | relevance | path

Searched refs:eps_cg (Results 1 – 5 of 5) sorted by relevance

/dports/math/octave-forge-nan/nan-3.6.1/src/
H A Dtron.h57 TRON(const function *fun_obj, double eps = 0.1, double eps_cg = 0.1, int max_iter = 1000);
68 double eps_cg; variable
H A Dtron.cpp94 TRON::TRON(const function *fun_obj, double eps, double eps_cg, int max_iter) in TRON() argument
98 this->eps_cg=eps_cg; in TRON()
255 cgtol = eps_cg*sqrt(zTr); in trpcg()
H A Dlinear.cpp2194 double eps_cg = 0.1; in train_one() local
2196 eps_cg = 0.5; in train_one()
2220 TRON tron_obj(fun_obj, primal_solver_tol, eps_cg); in train_one()
2238 TRON tron_obj(fun_obj, primal_solver_tol, eps_cg); in train_one()
/dports/science/liblinear/liblinear-2.43/
H A Dnewton.h21 NEWTON(const function *fun_obj, double eps = 0.1, double eps_cg = 0.5, int max_iter = 1000);
31 double eps_cg; variable
H A Dnewton.cpp82 NEWTON::NEWTON(const function *fun_obj, double eps, double eps_cg, int max_iter) in NEWTON() argument
86 this->eps_cg=eps_cg; in NEWTON()
195 cgtol = min(eps_cg, sqrt(gMinv_norm)); in pcg()