MLFlow

Adding an MLFlow app

To add a new MLFlow app to your working instance, go to the Applications view and select the "MLFlow 2.13 + Jupyter" application type:

Start your application, MLFlow will open in a new JupyterLab editor tab:

If you close the MLFlow tab, you can reopen it using the following command in the JupyterLab Command Palette (Command/Ctrl+Shift+C):

MLFlow in Visual Studio Code

MLFlow is also available with VSCode:

To open MLFlow in a VSCode tab, use the following VSCode command:

Tracking model training

circle-info

MLFlow server runs on port http://127.0.0.1:8080, you will need to set this tracking server in your code with:

import mlflow mlflow.set_tracking_uri("http://localhost:8080")

The following tutorial, adapted from the MLFlow documentation, shows how to track model training and register the trained model with MLFlow on Nuvolos:

Last updated

Was this helpful?