Skip to content

Commit e403d06

Browse files
authored
Merge pull request #181 from zenml-io/fix/links-after-docs-restructure
fix docs links
2 parents 140bbad + 823ad80 commit e403d06

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ the Apache License Version 2.0.
140140
| 🗺 **[Roadmap]** | See where ZenML is working to build new features. |
141141
| 🙋‍♀️ **[Contribute]** | How to contribute to the ZenML project and code base. |
142142

143-
[ZenML 101]: https://docs.zenml.io/user-guide/starter-guide
143+
[ZenML 101]: https://docs.zenml.io/user-guides/starter-guide
144144
[Core Concepts]: https://docs.zenml.io/getting-started/core-concepts
145145
[Our latest release]: https://github.com/zenml-io/zenml/releases
146146
[Vote for Features]: https://zenml.io/discussion

databricks-production-qa-demo/steps/deployment/deployment_deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def deployment_deploy() -> Annotated[
4545
In this example, the step can be configured to use different input data.
4646
See the documentation for more information:
4747
48-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
48+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
4949
5050
Args:
5151
dataset_inf: The inference dataset.

databricks-production-qa-demo/steps/etl/train_data_splitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def train_data_splitter(
4141
In this example, the step can be configured to use different test
4242
set sizes. See the documentation for more information:
4343
44-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
44+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
4545
4646
Args:
4747
dataset: Dataset read from source.

databricks-production-qa-demo/steps/hp_tuning/hp_tuning_single_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def hp_tuning_single_search(
5050
to use different input datasets and also have a flag to fall back to default
5151
model architecture. See the documentation for more information:
5252
53-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
53+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
5454
5555
Args:
5656
model_package: The package containing the model to use for hyperparameter tuning.

databricks-production-qa-demo/steps/inference/inference_predict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def inference_predict(
4343
In this example, the step can be configured to use different input data.
4444
See the documentation for more information:
4545
46-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
46+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
4747
4848
Args:
4949
dataset_inf: The inference dataset.

databricks-production-qa-demo/steps/promotion/compute_performance_metrics_on_current_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def compute_performance_metrics_on_current_data(
4444
and target environment stage for promotion.
4545
See the documentation for more information:
4646
47-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
47+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
4848
4949
Args:
5050
dataset_tst: The test dataset.

databricks-production-qa-demo/steps/promotion/promote_with_metric_compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def promote_with_metric_compare(
4646
and target environment stage for promotion.
4747
See the documentation for more information:
4848
49-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
49+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
5050
5151
Args:
5252
latest_metric: Recently trained model metric results.

databricks-production-qa-demo/steps/training/model_trainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def model_trainer(
7272
hyperparameters to the model constructor. See the documentation for more
7373
information:
7474
75-
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters
75+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
7676
7777
Args:
7878
dataset_trn: The preprocessed train dataset.

huggingface-sagemaker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ make setup
7171
<summary><h3>Connect to a deployed ZenML and register secrets</h3></summary>
7272

7373
After this, you should have ZenML and all the requirements of the project installed locally.
74-
Next thing to do is to connect to a [deployed ZenML instance](https://docs.zenml.io/deploying-zenml/). You can
74+
Next thing to do is to connect to a [deployed ZenML instance](https://docs.zenml.io/user-guides/production-guide/deploying-zenml). You can
7575
create a free trial using [ZenML Pro](https://cloud.zenml.io) to get setup quickly.
7676

7777
Once you have your deployed ZenML ready, you can connect to it using:
@@ -93,7 +93,7 @@ zenml secret create huggingface_creds --username=HUGGINGFACE_USERNAME --token=HU
9393
<details>
9494
<summary><h3>Set up your local stack</h3></summary>
9595

96-
To run this project, you need to create a [ZenML Stack](https://docs.zenml.io/user-guide/production-guide/understand-stacks) with the required components to run the pipelines.
96+
To run this project, you need to create a [ZenML Stack](https://docs.zenml.io/user-guides/production-guide/understand-stacks) with the required components to run the pipelines.
9797

9898
```shell
9999
make install-stack

huggingface-sagemaker/steps/promotion/promote_metric_compare_promoter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def promote_metric_compare_promoter(
4848
In this example, the step can be configured to use different input data.
4949
See the documentation for more information:
5050
51-
https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines
51+
https://docs.zenml.io/how-to/pipeline-development/use-configuration-files
5252
5353
Args:
5454
latest_metrics: Recently trained model metrics results.

0 commit comments

Comments
 (0)