зеркало из https://github.com/microsoft/LightGBM.git
[python][sklearn] add `__sklearn_is_fitted__()` method to be better compatible with scikit-learn API (#4636)
This commit is contained in:
Родитель
01aa295a04
Коммит
4b140bcc97
|
@ -529,6 +529,9 @@ class LGBMModel(_LGBMModelBase):
|
|||
}
|
||||
}
|
||||
|
||||
def __sklearn_is_fitted__(self) -> bool:
|
||||
return getattr(self, "fitted_", False)
|
||||
|
||||
def get_params(self, deep=True):
|
||||
"""Get parameters for this estimator.
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче