diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-06 22:31:36 -0500 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-06 22:31:36 -0500 |
| commit | 6705d6ecde8e86d85f4cc47fe59e1b198288fd4a (patch) | |
| tree | 7bf69476755d3c2444bd17c3f389a8daac3ace75 /README.rst | |
| parent | Add support for specifying sample weights (fixes #2) (diff) | |
| download | pygensvm-6705d6ecde8e86d85f4cc47fe59e1b198288fd4a.tar.gz pygensvm-6705d6ecde8e86d85f4cc47fe59e1b198288fd4a.zip | |
Minor documentation fixes
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -73,8 +73,8 @@ from Scikit-Learn as follows: >>> scaler = MaxAbsScaler().fit(X_train) >>> X_train, X_test = scaler.transform(X_train), scaler.transform(X_test) -Note that we scale the data using the `maxabs_scale -<http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.maxabs_scale.html>`_ +Note that we scale the data using the `MaxAbsScaler +<http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.MaxAbsScaler.html>`_ function. This scales the columns of the data matrix to ``[-1, 1]`` without breaking sparsity. Scaling the dataset can have a significant effect on the computation time of GenSVM and is `generally recommended for SVMs |
