Skip to content
Merged
Show file tree
Hide file tree
Changes from 47 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
409a933
Add "Testing" section to the Table of Contents in user guide (#3481)
strickvl Mar 31, 2025
5156bdc
Add "Tutorials" section to the Table of Contents and introduce a new …
strickvl Mar 31, 2025
85b520a
Update "Tutorials" section in Table of Contents and create README for…
strickvl Mar 31, 2025
f0ee4db
section instead of dropdown
strickvl Mar 31, 2025
94a2e3b
Complete section 1
strickvl Mar 31, 2025
f2ca0f3
docs: Complete sections 1 and 2 of scheduled pipelines guide
strickvl Mar 31, 2025
99fe0b1
docs: Complete section 3 of scheduled pipelines guide
strickvl Mar 31, 2025
24e4bd0
docs: Complete scheduled pipelines guide
strickvl Mar 31, 2025
1a35b22
Update schedule limitations column
strickvl Mar 31, 2025
2c946be
Refine scheduling limitations in orchestrator comparison table
strickvl Mar 31, 2025
48f3d01
Enhance scheduled pipelines documentation with updated alerter setup
strickvl Mar 31, 2025
afa82d0
Enhance pipeline scheduling guide with improved examples
strickvl Mar 31, 2025
6d9232e
Fix missing imports in code examples
strickvl Mar 31, 2025
5a2c107
Fix pipeline triggering code to use correct ZenML API
strickvl Mar 31, 2025
b4f1aa9
Try alternative version as cookbook
strickvl Mar 31, 2025
7bc4055
Enhance scheduled pipelines documentation with troubleshooting guidance
strickvl Mar 31, 2025
5b2cb68
Add tutorial on organizing pipelines and models
strickvl Mar 31, 2025
454ec60
Update scheduled pipelines documentation to reflect tutorial changes
strickvl Apr 1, 2025
37548a6
Update .gitignore to include design directory and CLAUDE.md
strickvl Apr 1, 2025
200a08c
Enhance scheduled pipelines documentation with additional reference i…
strickvl Apr 1, 2025
6e915f5
Add links
strickvl Apr 1, 2025
dceda8a
v3
strickvl Apr 1, 2025
4077ef7
add central links
strickvl Apr 1, 2025
d65ca92
Update user guide tutorial on organizing pipelines and models
strickvl Apr 1, 2025
807e5ca
Fix line formatting
strickvl Apr 1, 2025
1177ef3
Fix code formatting
strickvl Apr 1, 2025
d6587e1
Fix Model import in tagging docs
strickvl Apr 1, 2025
23e73f0
Fix tagging docs errors
strickvl Apr 1, 2025
1ed9c51
Check and test the organization tutorial
strickvl Apr 1, 2025
2abfaf7
Fix link
strickvl Apr 1, 2025
15ddc81
Apply suggestions from code review
strickvl Apr 1, 2025
3147fd1
Testing inline note
strickvl Apr 1, 2025
cff4558
Trying different style
strickvl Apr 1, 2025
2285e32
Update managing-scheduled-pipelines tutorial to clarify pipeline sche…
strickvl Apr 1, 2025
2592b40
Enhance managing-scheduled-pipelines tutorial with GCP verification s…
strickvl Apr 1, 2025
ac1285c
Add CLI output
strickvl Apr 1, 2025
010ff3e
Enhance managing-scheduled-pipelines tutorial with additional instruc…
strickvl Apr 1, 2025
1cb699a
Update managing-scheduled-pipelines tutorial to include a hyperlink f…
strickvl Apr 1, 2025
dd03145
Use an enum
strickvl Apr 1, 2025
e5a95c7
Add instructions for deleting schedules on GCP in managing-scheduled-…
strickvl Apr 1, 2025
26e0731
Merge branch 'develop' into doc/scheduled-pipelines-guide
strickvl Apr 1, 2025
e1216eb
add missing section back!
strickvl Apr 1, 2025
ae6d68d
Merge branch 'doc/scheduled-pipelines-guide' of github.com:zenml-io/z…
strickvl Apr 1, 2025
708a36f
Add timezone section
strickvl Apr 1, 2025
4e3dac7
Add links in the next steps sections
strickvl Apr 1, 2025
c482ea6
Add screenshot
strickvl Apr 1, 2025
c6fe268
Enhance scheduled pipelines tutorial with clarified cleanup instructions
strickvl Apr 1, 2025
38e01e6
Improve structure consistency in scheduled pipelines tutorial
strickvl Apr 1, 2025
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,10 @@ zenml_examples/
# GitHub Folder YAML files not to be ignored
!.github/ISSUE_TEMPLATE/**

# VS Code gunk
# VS Code and Cursor gunk
.vscode/
design/
CLAUDE.md

# pyenv local version file
.python-version
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ During pipeline run a model can be also implicitly created (if not exists), in s
{% endhint %}

```python
from zenml.models import Model
from zenml import Model

# Create a model version with tags
model = Model(
Expand All @@ -141,7 +141,7 @@ def my_pipeline(...):
You can also assign tags when creating or updating models with the Python SDK:

```python
from zenml.models import Model
from zenml import Model
from zenml.client import Client

# Create or register a new model with tags
Expand Down Expand Up @@ -195,7 +195,7 @@ The recommended way to create exclusive tags is using the `Tag` object:
```python
from zenml import pipeline, Tag

@pipeline(tags=["not_an_exclusive_tag", Tag("an_exclusive_tag", exclusive=True)])
@pipeline(tags=["not_an_exclusive_tag", Tag(name="an_exclusive_tag", exclusive=True)])
def my_pipeline():
...
```
Expand Down Expand Up @@ -223,7 +223,7 @@ Cascade tags allow you to associate a tag from a pipeline with all artifact vers
```python
from zenml import pipeline, Tag

@pipeline(tags=["normal_tag", Tag("cascade_tag", cascade=True)])
@pipeline(tags=["normal_tag", Tag(name="cascade_tag", cascade=True)])
def my_pipeline():
...
```
Expand Down
5 changes: 5 additions & 0 deletions docs/book/user-guide/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
* [Deploying finetuned models](llmops-guide/finetuning-llms/deploying-finetuned-models.md)
* [Next steps](llmops-guide/finetuning-llms/next-steps.md)

## Tutorials

* [Managing scheduled pipelines](tutorials/managing-scheduled-pipelines.md)
* [Organizing pipelines and models](tutorials/organizing-pipelines-and-models.md)

## Examples

* [Quickstart](https://github.com/zenml-io/zenml/blob/main/examples/quickstart)
Expand Down
Loading
Loading