Databricks Machine Learning Associate Question 117
Single answerYou are using MLflow to track experiments in a Databricks workspace. After running several experiments, you want to locate the code that was executed for a specific run using the MLflow UI. Which section of the MLflow UI would you navigate to in order to find this information?
- A
Artifacts
- B
Parameters
- C
Source
- D
Metrics
Show answer and explanation
Correct answer: C
Explanation
To locate the code that was executed for a run in the MLflow UI, you need to navigate to the 'Source' section. This section provides details about the source code or notebook associated with the run, enabling you to track and reproduce your experiments effectively.
- A. Incorrect.
The 'Artifacts' section stores output files and artifacts generated during the run, such as model files or plots, but not the executed code.
- B. Incorrect.
The 'Parameters' section contains the input parameters for the run, such as hyperparameters, but it does not provide information about the executed code.
- C. Correct.
The 'Source' section in the MLflow UI displays the source code or notebook that was used to execute the run, making it the correct place to locate the executed code.
- D. Incorrect.
The 'Metrics' section stores evaluation metrics logged during the run, such as accuracy or loss, but it does not provide access to the executed code.