From: Benedikt Waldvogel Date: Sun, 29 Nov 2020 15:49:55 +0000 (+0100) Subject: Adjust eps parameter comment in README: "stopping tolerance" X-Git-Tag: v243~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1b6bdec26ffbb6d1e39ec962f43ebbe8566474e;p=liblinear Adjust eps parameter comment in README: "stopping tolerance" The comment was changed in linear.h via https://github.com/cjlin1/liblinear/commit/7b0193baec9a443684e4a079ae4a2040971f67cf. However, the code snippet in the README was not adjusted. Signed-off-by: Chih-Jen Lin --- diff --git a/README b/README index 8a6b385..3a6056f 100644 --- a/README +++ b/README @@ -390,7 +390,7 @@ in linear.h, so you can check the version number. int solver_type; /* these are for training only */ - double eps; /* stopping criteria */ + double eps; /* stopping tolerance */ double C; double nu; /* one-class SVM only */ int nr_weight;