Dagster integration with MLflow, enabling tracking of ML experiments, models, and parameters within Dagster pipelines. Current version 0.29.3, supports Python >=3.10,<3.15. Releases follow Dagster core release cadence (approximately bi-weekly).
pip install dagster-mlflowNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Minimal working example: defines an op logging params/metrics, a resource wrapping MLflow tracking, and a job to run it.
Use `from dagster_mlflow.resources import mlflow_resource` and configure as a resource.
Replace with `from dagster_mlflow import EndTimeLoggedRun` and use `with EndTimeLoggedRun(context, mlflow_run=context.resources.mlflow):`
Directly access `context.resources.mlflow` instead of relying on `MLflowRunContext`.
Run `pip install dagster-mlflow` in the correct environment.
Define your own MLflow resource as shown in the quickstart, or use `from dagster_mlflow.resources import mlflow_resource`.