openml.OpenMLParameter¶
-
class
openml.OpenMLParameter(input_id, flow_id, flow_name, full_name, parameter_name, data_type, default_value, value)¶ Parameter object (used in setup).
- Parameters
- input_idint
The input id from the openml database
- flow idint
The flow to which this parameter is associated
- flow namestr
The name of the flow (no version number) to which this parameter is associated
- full_namestr
The name of the flow and parameter combined
- parameter_namestr
The name of the parameter
- data_typestr
The datatype of the parameter. generally unused for sklearn flows
- default_valuestr
The default value. For sklearn parameters, this is unknown and a default value is selected arbitrarily
- valuestr
If the parameter was set, the value that it was set to.