MLflow

Name:flytekitplugins-mlflow
Version:0.0.0+develop
Author:admin@flyte.org
Provides: flytekitplugins.mlflow
Requires: flytekit>=1.1.0,<2.0.0
plotly
mlflow>=2.10.0
pandas
Python:>=3.9
License:apache2
Source Code: https://github.com/flyteorg/flytekit/tree/master/plugins/flytekit-mlflow
  • Intended Audience :: Science/Research
  • Intended Audience :: Developers
  • License :: OSI Approved :: Apache Software License
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Topic :: Scientific/Engineering
  • Topic :: Scientific/Engineering :: Artificial Intelligence
  • Topic :: Software Development
  • Topic :: Software Development :: Libraries
  • Topic :: Software Development :: Libraries :: Python Modules

MLflow enables us to log parameters, code, and results in machine learning experiments and compare them using an interactive UI. This MLflow plugin enables seamless use of MLFlow within Flyte, and render the metrics and parameters on Flyte Deck.

To install the plugin, run the following command:

pip install flytekitplugins-mlflow

Example

from flytekit import task, workflow
from flytekitplugins.mlflow import mlflow_autolog
import mlflow

@task(enable_deck=True)
@mlflow_autolog(framework=mlflow.keras)
def train_model():
    ...