Intelegentny_Pszczelarz/.venv/Lib/site-packages/sklearn/linear_model/_glm/__init__.py

16 lines
263 B
Python
Raw Normal View History

2023-06-19 00:49:18 +02:00
# License: BSD 3 clause
from .glm import (
_GeneralizedLinearRegressor,
PoissonRegressor,
GammaRegressor,
TweedieRegressor,
)
__all__ = [
"_GeneralizedLinearRegressor",
"PoissonRegressor",
"GammaRegressor",
"TweedieRegressor",
]