]> granicus.if.org Git - liblinear/commitdiff
Changes due to a bug of the same file in LIBSVM:
authorChih-Jen Lin <cjlin@csie.ntu.edu.tw>
Mon, 30 Jul 2018 14:21:00 +0000 (22:21 +0800)
committerChih-Jen Lin <cjlin@csie.ntu.edu.tw>
Mon, 30 Jul 2018 14:21:00 +0000 (22:21 +0800)
    Fix a bug in python/commonutil.py that the function "csr_scale" does not return the scaled data

python/commonutil.py

index f2da8de50ad6a746225ca02528655fe246e4b00a..fcc6d24ba7770a1c67e732d52331c0127d46473c 100644 (file)
@@ -164,3 +164,5 @@ def csr_scale(x, scale_param):
                        "       > new      #nonzeros %d\n" % scaled_x.getnnz() +
                        "If feature values are non-negative and sparse, get scale_param by setting lower=0 rather than the default lower=-1.",
                        file=sys.stderr)
+
+       return scaled_x