projektAI/venv/Lib/site-packages/sklearn/linear_model/_glm/__init__.py
2021-06-06 22:13:05 +02:00

16 lines
259 B
Python

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