mlflow.utils

class mlflow.utils.async_logging.run_operations.RunOperations(operation_futures)[源代码]

帮助管理 MLflow 异步日志记录的期货的类。

wait()[源代码]

所有未来完成后的块。

mlflow.utils.async_logging.run_operations.get_combined_run_operations(run_operations_list: List[RunOperations]) RunOperations[源代码]

将一系列 RunOperations 对象合并为一个 RunOperations 对象。

给定一个 RunOperations 列表,返回一个代表所有操作组合的 RunOperations 对象。如果输入列表为空,则返回 None。如果输入列表只包含一个元素,则返回该元素。否则,创建一个新的 RunOperations 对象,该对象组合了每个输入 RunOperations 对象的操作未来。

参数:

run_operations_list – 要合并的 RunOperations 对象列表。

返回:

一个代表组合操作集的 RunOperations 对象。