Skip to content

Commit 4d1c6f3

Browse files
committed
Update deps
1 parent 9fd061e commit 4d1c6f3

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

docs/user_guides/mlops/provenance/provenance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ You can of course explicitly provide the training dataset version.
6969

7070
Once the relation is stored in the provenance graph, you can navigate the graph from model to feature view or training dataset and the other way around.
7171

72-
Users can call the [get_feature_view_provenance(https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/model_registry/model_api/#get_feature_view_provenance) method or the [get_training_dataset_provenance(https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/model_registry/model_api/#get_training_dataset_provenance) method which will each return a [provenance Link object](#provenance-links).
72+
Users can call the [`Model.get_feature_view_provenance`][hsml.model.Model.get_feature_view_provenance] method or the [`Model.get_training_dataset_provenance`][hsml.model.Model.get_training_dataset_provenance] method which will each return a [provenance Link object](#provenance-links).
7373

74-
You can also retrieve directly the parent feature view object, without the need to extract them from the provenance links object, using the [get_feature_view(https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/model_registry/model_api/#get_feature_view ) method
74+
You can also retrieve directly the parent feature view object, without the need to extract them from the provenance links object, using the [`Model.get_feature_view`][hsml.model.Model.get_feature_view] method.
7575

7676
=== "Python"
7777

mkdocs.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -322,13 +322,6 @@ plugins:
322322
minify_html: true
323323
minify_css: true
324324
minify_js: true
325-
- mkdocs-jupyter
326-
- macros:
327-
# have to use custom templating string otherwise it interferes with jupyter notebooks
328-
j2_block_start_string: "{{{%"
329-
j2_block_end_string: "%}}}"
330-
j2_variable_start_string: "{{{"
331-
j2_variable_end_string: "}}}"
332325
- mike:
333326
canonical_version: latest
334327
- multirepo
@@ -349,6 +342,12 @@ plugins:
349342
docstring_section_style: spacy
350343
inventories:
351344
- https://docs.python.org/3/objects.inv
345+
- https://pandas.pydata.org/docs/objects.inv
346+
- https://numpy.org/doc/stable/objects.inv
347+
- https://docs.python-requests.org/en/latest/objects.inv
348+
- https://pydantic-docs.helpmanual.io/objects.inv
349+
- https://fastapi.tiangolo.com/objects.inv
350+
- https://scikit-learn.org/stable/objects.inv
352351

353352
markdown_extensions:
354353
- admonition

requirements-docs.txt

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
mkdocs==1.5.3
2-
mkdocs-material==9.5.17
3-
mike==2.0.0
4-
sphinx==7.2.6
5-
keras_autodoc @ git+https://git@github.com/logicalclocks/keras-autodoc
6-
markdown-include==0.8.1
7-
mkdocs-jupyter==0.24.3
8-
markdown==3.6
9-
pymdown-extensions==10.7.1
10-
mkdocs-macros-plugin==1.0.4
1+
mkdocs==1.6.1
2+
mkdocs-material==9.7.0
3+
mike==2.1.3
4+
markdown==3.10
5+
pymdown-extensions==10.17.2
116
mkdocs-minify-plugin>=0.2.0
127
mkdocs-multirepo-plugin
138
mkdocstrings[python]

0 commit comments

Comments
 (0)