setup
openml.setups.setup
#
OpenMLParameter
#
OpenMLParameter(input_id: int, flow_id: int, flow_name: str, full_name: str, parameter_name: str, data_type: str, default_value: str, value: str)
Parameter object (used in setup).
| PARAMETER | DESCRIPTION |
|---|---|
input_id
|
The input id from the openml database
TYPE:
|
flow
|
The flow to which this parameter is associated
|
flow
|
The name of the flow (no version number) to which this parameter is associated
|
full_name
|
The name of the flow and parameter combined
TYPE:
|
parameter_name
|
The name of the parameter
TYPE:
|
data_type
|
The datatype of the parameter. generally unused for sklearn flows
TYPE:
|
default_value
|
The default value. For sklearn parameters, this is unknown and a default value is selected arbitrarily
TYPE:
|
value
|
If the parameter was set, the value that it was set to.
TYPE:
|
Source code in openml/setups/setup.py
OpenMLSetup
#
Setup object (a.k.a. Configuration).
| PARAMETER | DESCRIPTION |
|---|---|
setup_id
|
The OpenML setup id
TYPE:
|
flow_id
|
The flow that it is build upon
TYPE:
|
parameters
|
The setting of the parameters
TYPE:
|