MLflow is an open source platform to manage the ML lifecycle, including experimentation, reproducibility, deployment, and a central model registry. MLflow currently offers four components:
MLflow Tracking Record and query experiments: code, data, config, and results
MLflow Projects Package data science code in a format to reproduce runs on any platform
MLflow Models Deploy machine learning models in diverse serving environments
Model Registry Store, annotate, discover, and manage models in a central repository
Pull the image with the default tag:
Run the image, make directory for model store & handle permissions
mkdir -p /mlflow/artifacts
chmod 1777 /mlflow
docker run -d \
--name=mlflow \
--restart=unless-stopped \
-p 5000:5000 \
-v /mlflow:/mlflow \
jhoeller/mlflow-v.1.14.1:default \
--backend-store-uri sqlite:////mlflow/mlflow.sqlite \
--default-artifact-root s3://mlflow/artifacts \
--host 0.0.0.0
Content type
Image
Digest
sha256:5d693cf02…
Size
803 MB
Last updated
almost 3 years ago
docker pull jhoeller/mlflow-v.1.14.1:default