diff options
author | Joe Zhao <ztuowen@gmail.com> | 2015-05-21 13:06:23 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2015-05-21 13:06:23 +0800 |
commit | de2081a3082a0aea2f7703e70e02f4ddc210c997 (patch) | |
tree | c6b9f74216d454fdd620b8f8d63364735f660e32 | |
parent | 482be9136a726923eb24c9f5c0244e94c0fc91bc (diff) | |
download | ranksvm-de2081a3082a0aea2f7703e70e02f4ddc210c997.tar.gz ranksvm-de2081a3082a0aea2f7703e70e02f4ddc210c997.tar.bz2 ranksvm-de2081a3082a0aea2f7703e70e02f4ddc210c997.zip |
term condition
-rw-r--r-- | model/ranksvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/ranksvm.cpp b/model/ranksvm.cpp index 3c31da7..2f366d6 100644 --- a/model/ranksvm.cpp +++ b/model/ranksvm.cpp @@ -15,7 +15,7 @@ int maxiter = 1; // max iteration count double prec=1e-10; // precision // conjugate gradient double cg_prec=1e-10; // precision -int cg_maxiter = 1000; +int cg_maxiter = 2000; int ls_maxiter = 20; // line search double line_prec=1e-10; // precision |