misc
get_regressor(name)
¶
Returns a scikit-learn regressor based on the given name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The name of the regressor. Supported names are: “linear”, “polynomial”, “random_forest”, and “kriging”. |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
object
|
A scikit-learn regressor object. |
Raises:
Type | Description |
---|---|
ValueError
|
If an unknown regressor name is provided. |
Example
from spotpython.utils.misc import get_regressor regressor = get_regressor(“linear”) print(type(regressor))
Source code in spotpython/utils/misc.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|