To view the results, click the Experiments icon in the right sidebar. This sidebar displays the parameters and metrics for each run of this notebook.
Click the name of the run to open the Runs page in a new tab. This page shows all of the information that was logged from the run. Select the Artifacts tab to find the logged model and plot.
For more information, see "MLflow experiments" (AWS|Azure|GCP).
MLflow example (Python)
With MLflow's autologging capabilities, a single line of code automatically logs the resulting model, the parameters used to create the model, and a model score. MLflow autologging is available for several widely used machine learning packages. This notebook creates a Random Forest model on a simple dataset and uses the the MLflow
autolog()
function to log information generated by the run.For details about what information is logged with
autolog()
, refer to the MLflow documentation.Setup