Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix links #5153

Merged
merged 1 commit into from
Dec 26, 2024
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 docs/source/examples/mlflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This example uses the ``scikit-learn`` framework to train a classification model
model.fit(X_train, Y_train)
mlflow.sklearn.save_model(model, model_uri.resolve())

Next, use the ``bentoml.mlflow.import_model`` API to save the model to the BentoML :doc:`/build-with-bentoml/model-loading-and-management`, a local directory to store and manage models. You can retrieve this model later in other services to run predictions.
Next, use the ``bentoml.mlflow.import_model`` API to save the model to the BentoML :doc:`Model Store </build-with-bentoml/model-loading-and-management>`, a local directory to store and manage models. You can retrieve this model later in other services to run predictions.

.. code-block:: bash

Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/xgboost.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ This example uses the ``scikit-learn`` framework to load and preprocess the `bre
# Train the model
model = xgb.train(param, dt)

After training, use the ``bentoml.xgboost.save_model`` API to save the model to the BentoML :doc:`/build-with-bentoml/model-loading-and-management`, a local directory to store and manage models. You can retrieve this model later in other services to run predictions.
After training, use the ``bentoml.xgboost.save_model`` API to save the model to the BentoML :doc:`Model Store </build-with-bentoml/model-loading-and-management>`, a local directory to store and manage models. You can retrieve this model later in other services to run predictions.

.. code-block:: bash

Expand Down
Loading