sklearn
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/models/sklearn.py
13 14 15 16 17 18 19 20 21 22 23 24 25 |
|