evaluation
openml.evaluations.evaluation
#
OpenMLEvaluation
dataclass
#
OpenMLEvaluation(run_id: int, task_id: int, setup_id: int, flow_id: int, flow_name: str, data_id: int, data_name: str, function: str, upload_time: str, uploader: int, uploader_name: str, value: float | None, values: list[float] | None, array_data: str | None = None)
Contains all meta-information about a run / evaluation combination, according to the evaluation/list function
| PARAMETER | DESCRIPTION |
|---|---|
run_id
|
Refers to the run.
TYPE:
|
task_id
|
Refers to the task.
TYPE:
|
setup_id
|
Refers to the setup.
TYPE:
|
flow_id
|
Refers to the flow.
TYPE:
|
flow_name
|
Name of the referred flow.
TYPE:
|
data_id
|
Refers to the dataset.
TYPE:
|
data_name
|
The name of the dataset.
TYPE:
|
function
|
The evaluation metric of this item (e.g., accuracy).
TYPE:
|
upload_time
|
The time of evaluation.
TYPE:
|
uploader
|
Uploader ID (user ID)
TYPE:
|
upload_name
|
Name of the uploader of this evaluation
TYPE:
|
value
|
The value (score) of this evaluation.
TYPE:
|
values
|
The values (scores) per repeat and fold (if requested)
TYPE:
|
array_data
|
list of information per class. (e.g., in case of precision, auroc, recall)
TYPE:
|