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

10 lines
255 B
Python
Raw Normal View History

2010-09-14 20:58:59 +08:00
"""
:mod:`sklearn.linear_model.sparse` is the sparse counterpart
of :mod:`sklearn.linear_model`.
2010-09-14 20:58:59 +08:00
"""
from .coordinate_descent import Lasso, ElasticNet
from .logistic import LogisticRegression
from .stochastic_gradient import SGDClassifier, SGDRegressor