Note
This page is a reference documentation. It only explains the function signature, and not how to use it. Please refer to the What you really need to know section for the big picture.
julearn.utils.typing.ModelLike¶
- class julearn.utils.typing.ModelLike(*args, **kwargs)¶
Class for model-like.
- predict(X)¶
Predict using the model.
- Parameters:
X (
DataFrame) – The data to predict on.- Returns:
The predictions.
- score(X, y, sample_weight=None)¶
Score the model.
- fit(X, y, **kwargs)¶
Fit estimator.