scikit-learn/sklearn/linear_model
Lars Buitinck 55a2f29ee0 FIX fit followed by partial_fit in multiclass SGD
Fixes #2496 and includes a non-regression test. Since the introduction
of fast_dot (and NumPy 1.6), dot products between arrays of various
memory layouts have become fast enough to no longer require storing coef_
in Fortran order. The only noticeably slower operation is multiplying a
CSR matrix with a Fortran-ordered array, but then building the CSR matrix
in the first place is more likely to be the bottleneck.
2013-10-13 15:55:02 +02:00
..
tests FIX fit followed by partial_fit in multiclass SGD 2013-10-13 15:55:02 +02:00
__init__.py ENH OrthogonalMatchingPursuitCV estimator 2013-07-26 09:50:53 +02:00
base.py BUG oops, *safe_* asarray 2013-09-13 17:24:28 +02:00
bayes.py DOC spellfixes 2013-06-29 16:18:23 +03:00
cd_fast.c COSMIT various typofixes 2013-04-11 21:22:14 +02:00
cd_fast.pyx DOC: Replaced all BSD style licenses with "BSD 3 clause" 2013-04-30 08:34:46 +02:00
coordinate_descent.py API : set return_models to False by default in path functions in coordinate descent 2013-09-29 15:18:13 +02:00
least_angle.py MAINT deprecate indices=False for cross validation generators 2013-09-10 10:58:24 +02:00
logistic.py DOC correct class_weight description for LogisticRegression 2013-07-18 22:35:05 +02:00
omp.py DOC+COSMIT: typos, lots of them 2013-09-13 16:29:42 +02:00
passive_aggressive.py DOC spellfixes 2013-06-29 16:18:23 +03:00
perceptron.py ENH Create FeatureSelectionMixin for shared [inverse_]transform code 2013-05-21 13:53:12 +10:00
randomized_l1.py DOC missing stuff in randomized_l1 module 2013-06-30 14:17:46 +02:00
ridge.py fix for 'line too long' warning 2013-08-31 12:04:31 +05:30
setup.py COSMIT pep8 2012-12-22 16:48:17 +01:00
sgd_fast.c ENH SGD Cython improvements 2013-09-07 18:24:36 +02:00
sgd_fast.pyx ENH SGD Cython improvements 2013-09-07 18:24:36 +02:00
stochastic_gradient.py FIX fit followed by partial_fit in multiclass SGD 2013-10-13 15:55:02 +02:00