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

16 lines
263 B
Python

# License: BSD 3 clause
from .glm import (
_GeneralizedLinearRegressor,
PoissonRegressor,
GammaRegressor,
TweedieRegressor,
)
__all__ = [
"_GeneralizedLinearRegressor",
"PoissonRegressor",
"GammaRegressor",
"TweedieRegressor",
]