From 2e12a4e1f89c77b1514b04982b1467b30be103e1 Mon Sep 17 00:00:00 2001 From: deven367 Date: Tue, 12 Aug 2025 13:21:08 -0400 Subject: [PATCH 1/2] dep for distributed models as well --- .github/workflows/build-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index 8e8eb805..35a3f264 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -19,7 +19,7 @@ jobs: - name: Install dependencies run: | - pip install '.[dev]' lazydocs pyyaml + pip install '.[dev,dask,ray,spark]' lazydocs pyyaml # setup quarto for rendering example/tutorial nbs - uses: quarto-dev/quarto-actions/setup@v2 From 6c28670380758a689a68571d12933746a60c4991 Mon Sep 17 00:00:00 2001 From: deven367 Date: Tue, 12 Aug 2025 13:38:21 -0400 Subject: [PATCH 2/2] fix docstring for lazydocs --- mlforecast/flavor.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mlforecast/flavor.py b/mlforecast/flavor.py index acd7436c..b03de62c 100644 --- a/mlforecast/flavor.py +++ b/mlforecast/flavor.py @@ -266,8 +266,10 @@ def load_model(model_uri, dst_path=None): - ``mlflow-artifacts:/path/to/model`` For more information about supported URI schemes, see - `Referencing Artifacts `_. + Referencing Artifacts: + ``` + https://www.mlflow.org/docs/latest/tracking.html#artifact-locations + ``` dst_path (str, optional): The local filesystem path to which to download the model artifact.This directory must already exist. If unspecified, a local output path will be created. Defaults to None.