Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions mlforecast/flavor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://www.mlflow.org/docs/latest/tracking.html#
artifact-locations>`_.
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.
Expand Down
Loading