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

Fix broken links #17

Merged
merged 10 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ to indicate where you can add your code:

## 📜 Project Structure

The project loosely follows [the recommended ZenML project structure](https://docs.zenml.io/user-guide/starter-guide/follow-best-practices):
The project loosely follows [the recommended ZenML project structure](https://docs.zenml.io/how-to/setting-up-a-project-repository/best-practices):

```
.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def promote_metric_compare_promoter(
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:
latest_metrics: Recently trained model metrics results.
Expand Down Expand Up @@ -69,4 +69,4 @@ def promote_metric_compare_promoter(
logger.info(
f"Promoted current model version to {pipeline_extra['target_env']} environment"
)
### YOUR CODE ENDS HERE ###
### YOUR CODE ENDS HERE ###
2 changes: 1 addition & 1 deletion template/steps/tokenizer_loader/tokenizer_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def tokenizer_loader(
For more information on how to configure steps in a pipeline, refer to the
following documentation:

https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines
https://docs.zenml.io/how-to/build-pipelines/use-pipeline-step-parameters

Args:
lower_case: A boolean value indicating whether to convert the input text to
Expand Down
Loading