set_metric_names
Assign custom metric names to objective values in Optuna optimization tasks to label and distinguish results for clear analysis and interpretation.
Instructions
Set metric_names. metric_names are labels used to distinguish what each objective value is.
Args:
metric_names:
The list of metric name for each objective value.
The length of metric_names list must be the same with the number of objectives.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metric_names | Yes |
Input Schema (JSON Schema)
{
"properties": {
"metric_names": {
"items": {
"type": "string"
},
"title": "Metric Names",
"type": "array"
}
},
"required": [
"metric_names"
],
"title": "set_metric_namesArguments",
"type": "object"
}