scikit-learn/scikits/learn/linear_model/sparse/__init__.py

10 lines
267 B
Python

"""
:mod:`scikits.learn.linear_model.sparse` is the sparse counterpart
of :mod:`scikits.learn.linear_model`.
"""
from .coordinate_descent import Lasso, ElasticNet
from .logistic import LogisticRegression
from .stochastic_gradient import SGDClassifier, SGDRegressor