We welcome community contributions to MLflow. This page describes how to develop/test your changes to MLflow locally.
The majority of the MLflow codebase is in Python. This includes the CLI, Tracking Server, Artifact Repositories (e.g., S3 or Azure Blob Storage backends), and of course the Python fluent, tracking, and model APIs.
We recommend installing MLflow in its own conda environment for development, as follows:
conda create --name mlflow-dev-env
source activate mlflow-dev-env
pip install -r dev-requirements.txt
pip install -r test-requirements.txt
pip install -e . # installs mlflow from current checkoutnpm is required to run the Javascript dev server.
You can verify that npm is on the PATH by running npm -v, and
install npm if needed.
Before running the Javascript dev server or building a distributable wheel, install Javascript dependencies via:
cd mlflow/server/js
npm install
cd - # return to root repository directoryIf modifying dependencies in mlflow/server/js/package.json, run npm update within
mlflow/server/js to install the updated dependencies.
Certain MLflow modules are implemented in Java, under the mlflow/java/ directory.
These are the Java Tracking API client (mlflow/java/client) and the Model Scoring Server
for Java-based models like MLeap (mlflow/java/scoring).
Other Java functionality (like artifact storage) depends on the Python package, so first install the Python package in a conda environment as described above. Install the Java 8 JDK (or above), and download and install Maven. You can then build and run tests via:
cd mlflow/java
mvn compile testThe mlflow/R/mlflow directory contains R wrappers for the Projects, Tracking and Models
components. These wrappers depend on the Python package, so first install
the Python package in a conda environment:
# Note that we don't pass the -e flag to pip, as the R tests attempt to run the MLflow UI
# via the CLI, which will not work if we run against the development tracking server
pip install .Install R, then run the following to install dependencies for building MLflow locally:
cd mlflow/R/mlflow
NOT_CRAN=true Rscript -e 'install.packages("devtools", repos = "https://cloud.r-project.org")'
NOT_CRAN=true Rscript -e 'devtools::install_deps(dependencies = TRUE)'Build the R client via:
R CMD build .Run tests:
R CMD check --no-build-vignettes --no-manual --no-tests mlflow*tar.gz
cd tests
NOT_CRAN=true LINTR_COMMENT_BOT=false Rscript ../.travis.R
cd -Run linter:
Rscript -e 'lintr::lint_package()'When developing, you can make Python changes available in R by running (from mlflow/R/mlflow):
Rscript -e 'reticulate::conda_install("r-mlflow", "../../../.", pip = TRUE)'Please also follow the recommendations from the Advanced R - Style Guide regarding naming and styling.
We recommend Running the Javascript Dev Server - otherwise, the tracking frontend will request
files in the mlflow/server/js/build directory, which is not checked into Git.
Alternatively, you can generate the necessary files in mlflow/server/js/build as described in
Building a Distributable Artifact.
Verify that the unit tests & linter pass before submitting a pull request by running:
pytest
./lint.shWhen running pytest --requires-ssh it is necessary that passwordless SSH access to localhost
is available. This can be achieved by adding the SSH public key to authorized keys:
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys.
Install Node Modules, then run the following:
In one shell:
mlflow uiIn another shell:
cd mlflow/server/js
npm startThe MLflow Tracking UI will show runs logged in ./mlruns at http://localhost:3000.
Install Node Modules, then run the following:
Generate JS files in mlflow/server/js/build:
cd mlflow/server/js
npm run buildBuild a pip-installable wheel in dist/:
cd -
python setup.py bdist_wheelTo build protobuf files, simply run generate-protos.sh. The required protoc version is 3.6.0.
Install the necessary Python dependencies via pip install -r dev-requirements.txt. Then run
cd docs
make livehtml