From eb799408483b034c1c048c4a415989cd9e66ad32 Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Wed, 5 Jun 2024 17:38:38 +0200 Subject: [PATCH] fix the links --- template/steps/data_loader.py | 2 +- template/steps/data_preprocessor.py | 2 +- template/steps/data_splitter.py | 2 +- template/steps/inference_predict.py | 2 +- template/steps/model_evaluator.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/template/steps/data_loader.py b/template/steps/data_loader.py index 4df6b8a..da5a95c 100644 --- a/template/steps/data_loader.py +++ b/template/steps/data_loader.py @@ -22,7 +22,7 @@ def data_loader( In this example, the step can be configured with number of rows and logic to drop target column or not. See the documentation for more information: - https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines + https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters Args: random_state: Random state for sampling diff --git a/template/steps/data_preprocessor.py b/template/steps/data_preprocessor.py index f343407..cd87063 100644 --- a/template/steps/data_preprocessor.py +++ b/template/steps/data_preprocessor.py @@ -38,7 +38,7 @@ def data_preprocessor( columns and normalize numerical columns. See the documentation for more information: - https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines + https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters Args: random_state: Random state for sampling. diff --git a/template/steps/data_splitter.py b/template/steps/data_splitter.py index 3b8eb57..2bf2968 100644 --- a/template/steps/data_splitter.py +++ b/template/steps/data_splitter.py @@ -25,7 +25,7 @@ def data_splitter( In this example, the step can be configured to use different test set sizes. See the documentation for more information: - https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines + https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters Args: dataset: Dataset read from source. diff --git a/template/steps/inference_predict.py b/template/steps/inference_predict.py index 60f9267..c893ab3 100644 --- a/template/steps/inference_predict.py +++ b/template/steps/inference_predict.py @@ -40,7 +40,7 @@ def inference_predict( In this example, the step can be configured to use different input data. See the documentation for more information: - https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines + https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters Args: model: Trained model. diff --git a/template/steps/model_evaluator.py b/template/steps/model_evaluator.py index fec2bde..835d9ea 100644 --- a/template/steps/model_evaluator.py +++ b/template/steps/model_evaluator.py @@ -41,7 +41,7 @@ def model_evaluator( does not meet the minimum criteria. See the documentation for more information: - https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines + https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters Args: model: The pre-trained model artifact.