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

16 lines
259 B
Python

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