model
SciKitModel(model, output_name)
Bases: Model
A model that wraps a scikit-learn model.
Initialize the model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
Any
|
The scikit-learn model. |
required |
output_name
|
str
|
The name of the output column. |
required |
Source code in src/flowcean/sklearn/model.py
16 17 18 19 20 21 22 23 24 25 26 27 28 |
|