mlflow.entities
All entities returned by the MLflow REST API.
-
class
mlflow.entities.
Experiment
(experiment_id, name, artifact_location) Bases:
mlflow.entities._mlflow_object._MLflowObject
Experiment object for Python client.
-
class
mlflow.entities.
FileInfo
(path, is_dir, file_size) Bases:
mlflow.entities._mlflow_object._MLflowObject
Class exposing metadata about a file or directory.
-
class
mlflow.entities.
Metric
(key, value, timestamp) Bases:
mlflow.entities._mlflow_object._MLflowObject
Metric object for python client.
-
class
mlflow.entities.
Param
(key, value) Bases:
mlflow.entities._mlflow_object._MLflowObject
Param object for python client.
-
class
mlflow.entities.
Run
(run_info, run_data) Bases:
mlflow.entities._mlflow_object._MLflowObject
Run object for python client.
-
data
return –
mlflow.entities.RunData
-
info
return –
mlflow.entities.RunInfo
-
-
class
mlflow.entities.
RunData
(metrics=None, params=None) Bases:
mlflow.entities._mlflow_object._MLflowObject
Class exposing run data (metrics and parameters).
-
class
mlflow.entities.
RunInfo
(run_uuid, experiment_id, name, source_type, source_name, entry_point_name, user_id, status, start_time, end_time, source_version, tags, artifact_uri=None) Bases:
mlflow.entities._mlflow_object._MLflowObject
Class containing metadata for a run.
-
copy_with_overrides
(status, end_time) Returns a copy the current RunInfo with certain attributes modified
-
source_name
String name of the source of the run (GitHub URI of the project corresponding to the run, etc).
-
source_type
Enum (one of the values in
mlflow.entities.source_type.SourceType
) describing the source of the run.
-
status
Enum (one of the values in
mlflow.entities.run_status.RunStatus
) describing the status of the run.
List of
mlflow.entities.run_tag.RunTag
for the run.
-
-
class
mlflow.entities.
RunStatus
Bases:
object
Enum describing the status of a
mlflow.entities.run.Run
.