Skip to content

Commit

Permalink
Implementation of logistic_regression_path.
Browse files Browse the repository at this point in the history
This is mostly the code from Gael's logistic_cv branch. My work is only some
minor cleanup some added tests and benchmarking.
  • Loading branch information
fabianp committed Jul 29, 2013
1 parent 11a0c28 commit 66678b2
Show file tree
Hide file tree
Showing 4 changed files with 671 additions and 2 deletions.
5 changes: 4 additions & 1 deletion sklearn/linear_model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
from .stochastic_gradient import SGDClassifier, SGDRegressor
from .ridge import (Ridge, RidgeCV, RidgeClassifier, RidgeClassifierCV,
ridge_regression)
from .logistic import LogisticRegression
from .logistic import (LogisticRegression, LogisticRegressionCV,
logistic_regression_path)
from .omp import (orthogonal_mp, orthogonal_mp_gram, OrthogonalMatchingPursuit,
OrthogonalMatchingPursuitCV)
from .passive_aggressive import PassiveAggressiveClassifier
Expand All @@ -46,6 +47,7 @@
'LinearRegression',
'Log',
'LogisticRegression',
'LogisticRegressionCV',
'ModifiedHuber',
'MultiTaskElasticNet',
'MultiTaskLasso',
Expand All @@ -67,6 +69,7 @@
'lars_path',
'lasso_path',
'lasso_stability_path',
'logistic_regression_path',
'orthogonal_mp',
'orthogonal_mp_gram',
'ridge_regression']
Loading

0 comments on commit 66678b2

Please sign in to comment.