1. 学习
  2. /
  3. 课程
  4. /
  5. Introduction to MLflow

Connected

练习

How to retrieve active run data?

MLflow uses the concept of runs to log metrics, parameters and artifacts to MLflow Tracking. Using the start_run() function from the mlflow module starts a new run and sets it to an active state. This is helpful if information such as run_id or artifact_uri needs to be retrieved.

A run has been set to active using the following code:

run = mlflow.start_run()

If information about the current run is needed, which of the following attributes is used to retrieve metadata about an active run?

说明

50 XP

答案选项