Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mlflow-export-import

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mlflow-export-import

Copy MLflow objects (experiments, runs or registered models) to another tracking server

  • 1.2.0
  • PyPI
  • Socket score

Maintainers
1

MLflow Export Import

The MLflow Export Import package provides tools to copy MLflow objects (runs, experiments or registered models) from one MLflow tracking server (Databricks workspace) to another. Using the MLflow REST API, the tools export MLflow objects to an intermediate directory and then import them into the target tracking server.

For more details:

  • JSON export file format.
  • MLflow Object Relationships slide deck.

Architecture

Overview

Why use MLflow Export Import?

  • MLOps CI/CD. Migrate runs (or registered models) to another tracking server.
    • Promote a run from the development to the test tracking server.
    • After it passes tests, then promote it to the production tracking server.
  • Share and collaborate with other data scientists in the same or other tracking server (Databricks workspace).
    • For example, copy an experiment from one user to another.
  • Backup your MLflow objects to external storage so they can be restored if needed.
  • Disaster recovery. Save your MLflow objects to external storage so they can be replicated to another tracking server.

MLflow Export Import scenarios

Source tracking serverDestination tracking serverNote
Open sourceOpen sourcecommon
Open sourceDatabricksless common
DatabricksDatabrickscommon
DatabricksOpen sourcerare

MLflow Objects

These are the MLflow objects and their attributes that can be exported.

ObjectRESTPythonSQL
Runlinklinklink
Experimentlinklinklink
Registered Modellinklinklink
Registered Model Versionlinklinklink

MLflow provides rudimentary capabilities for tracking lineage regarding the original source objects. See README_governance.

Tools Overview

There are two dimensions to the MLflow Export Import tools:

  • Export of MLflow objects in single or bulk mode.
  • Regular Python scripts or Databricks notebooks.

Single and Bulk Tools

The two export modes are:

  • Single tools. Copy a single MLflow object between tracking servers. These tools allow you to specify a different destination object name. For example, if you want to clone the experiment /Mary/Experiments/Iris under a new name, you can specify the target experiment name as /John/Experiments/Iris.

  • Bulk tools. High-level tools to copy an entire tracking server or a collection of MLflow objects. There is no option to change destination object names. Full object referential integrity is maintained (e.g. an imported registered model version will point to the imported run that it refers to.

Databricks notebooks simply invoke the corresponding Python classes.

Limitations

See README_limitations.md.

Quick Start

Setup

pip install mlflow-export-import

Export experiment

export MLFLOW_TRACKING_URI=http://localhost:5000

export-experiment \
  --experiment sklearn-wine \
  --output-dir /tmp/export

Import experiment

export MLFLOW_TRACKING_URI=http://localhost:5001

import-experiment \
  --experiment-name sklearn-wine \
  --input-dir /tmp/export

Setup

Supports python 3.8.

Local setup

First create a virtual environment.

python -m venv mlflow-export-import
source mlflow-export-import/bin/activate

There are several different ways to install the package.

pip install mlflow-export-import
2. Install from github directly
pip install git+https:///github.com/mlflow/mlflow-export-import/#egg=mlflow-export-import
3. Install from github clone
git clone https://github.com/mlflow/mlflow-export-import
cd mlflow-export-import
pip install -e .

Databricks notebook setup

There are two different ways to install the package in a Databricks notebook.

1. Install package in notebook

See documentation: Install notebook-scoped libraries with %pip.

%pip install mlflow-export-import
2. Install package as a wheel on cluster

Build the wheel artifact, upload it to DBFS and then install it on your cluster.

git clone https://github.com/mlflow/mlflow-export-import
cd mlflow-export-import
python setup.py bdist_wheel
databricks fs cp dist/mlflow_export_import-1.0.0-py3-none-any.whl {MY_DBFS_PATH}

Laptop to Databricks usage

To run the tools externally (from your laptop) against a Databricks tracking server (workspace) set the following environment variables:

export MLFLOW_TRACKING_URI=databricks
export DATABRICKS_HOST=https://mycompany.cloud.databricks.com
export DATABRICKS_TOKEN=MY_TOKEN

For full details see Access the MLflow tracking server from outside Databricks.

Running tools

The main tool scripts can be executed either as a standard Python script or console script.

Python console scripts (such as export-run, import-run, etc.) are provided as a convenience. For a list of scripts see setup.py.

This allows you to use:

export-experiment --help

instead of:

python -u -m mlflow_export_import.experiment.export_experiment --help

Other

Testing

There are two types of tests : open source and Databricks tests. See tests/README for details.

README files

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc