|
1 | 1 | export const OrchestratorSection = { |
2 | | - helpLink: "https://docs.zenml.io/stack-components/orchestrators", |
| 2 | + helpLink: "https://docs.zenml.io/stacks/stack-components/orchestrators", |
3 | 3 | description: |
4 | 4 | "An orchestrator is a special kind of backend that manages the running of each step of the pipeline. Orchestrators administer the actual pipeline runs. By default, ZenML initializes your repository with an orchestrator that runs everything on your local machine." |
5 | 5 | }; |
6 | 6 |
|
7 | 7 | export const ArtifactStoreSection = { |
8 | | - helpLink: "https://docs.zenml.io/stack-components/artifact-stores", |
| 8 | + helpLink: "https://docs.zenml.io/stacks/stack-components/artifact-stores", |
9 | 9 | description: |
10 | 10 | "The Artifact Store is a central component in any MLOps stack. As the name suggests, it acts as a data persistence layer where artifacts (e.g. datasets, models) ingested or generated by the machine learning pipelines are stored." |
11 | 11 | }; |
12 | 12 |
|
13 | 13 | export const ContainerRegistrySection = { |
14 | | - helpLink: "https://docs.zenml.io/stack-components/container-registries", |
| 14 | + helpLink: "https://docs.zenml.io/stacks/stack-components/container-registries", |
15 | 15 | description: |
16 | 16 | "Container registry is used to store container images that are built to run machine learning pipelines in remote environments. Containerization of the pipeline code creates a portable environment that allows code to run in an isolated manner." |
17 | 17 | }; |
18 | 18 |
|
19 | 19 | export const StepOperatorSection = { |
20 | 20 | description: |
21 | 21 | "Step operators allow you to run individual steps in a custom environment different from the default one used by your active orchestrator.", |
22 | | - helpLink: "https://docs.zenml.io/stack-components/step-operators" |
| 22 | + helpLink: "https://docs.zenml.io/stacks/stack-components/step-operators" |
23 | 23 | }; |
24 | 24 |
|
25 | 25 | export const ModelDeployerSection = { |
26 | 26 | description: |
27 | 27 | "Model deployers are stack components responsible for online model serving. They are responsible for deploying models to a remote server. Model deployers also act as a registry for models that are served with ZenML.", |
28 | | - helpLink: "https://docs.zenml.io/stack-components/model-deployers" |
| 28 | + helpLink: "https://docs.zenml.io/stacks/stack-components/model-deployers" |
29 | 29 | }; |
30 | 30 |
|
31 | 31 | export const FeatureStoreSection = { |
32 | 32 | description: |
33 | 33 | "ZenML supports connecting to a Redis-backed Feast feature store as a stack component integration.", |
34 | | - helpLink: "https://docs.zenml.io/stack-components/feature-stores" |
| 34 | + helpLink: "https://docs.zenml.io/stacks/stack-components/feature-stores" |
35 | 35 | }; |
36 | 36 |
|
37 | 37 | export const ExperimentTrackerSection = { |
38 | 38 | description: |
39 | 39 | "Experiment trackers let you track your ML experiments by logging the parameters and allowing you to compare between different runs.", |
40 | | - helpLink: "https://docs.zenml.io/stack-components/experiment-trackers" |
| 40 | + helpLink: "https://docs.zenml.io/stacks/stack-components/experiment-trackers" |
41 | 41 | }; |
42 | 42 |
|
43 | 43 | export const AlerterSection = { |
44 | 44 | description: |
45 | 45 | "Alerters allow you to send messages to chat services (like Slack, Discord, Mattermost, etc.) from within your pipelines. This is useful to immediately get notified when failures happen, for general monitoring/reporting, and also for building human-in-the-loop ML.", |
46 | | - helpLink: "https://docs.zenml.io/stack-components/alerters " |
| 46 | + helpLink: "https://docs.zenml.io/stacks/stack-components/alerters" |
47 | 47 | }; |
48 | 48 |
|
49 | 49 | export const AnnotatorSection = { |
50 | 50 | description: |
51 | 51 | "Annotators are a stack component that enables the use of data annotation as part of your ZenML stack and pipelines.", |
52 | | - helpLink: "https://docs.zenml.io/stack-components/annotators" |
| 52 | + helpLink: "https://docs.zenml.io/stacks/stack-components/annotators" |
53 | 53 | }; |
54 | 54 |
|
55 | 55 | export const DataValidatorSection = { |
56 | 56 | description: |
57 | 57 | "Data Validators used in ZenML pipelines usually generate data profiles and data quality check reports that are versioned and stored in the Artifact Store and can be retrieved and visualized later.", |
58 | | - helpLink: "https://docs.zenml.io/stack-components/data-validators" |
| 58 | + helpLink: "https://docs.zenml.io/stacks/stack-components/data-validators" |
59 | 59 | }; |
60 | 60 |
|
61 | 61 | export const ImageBuilderSection = { |
62 | 62 | description: |
63 | 63 | "The image builder is an essential part of most remote MLOps stacks. It is used to build container images such that your machine-learning pipelines and steps can be executed in remote environments.", |
64 | | - helpLink: "https://docs.zenml.io/stack-components/image-builders" |
| 64 | + helpLink: "https://docs.zenml.io/stacks/stack-components/image-builders" |
65 | 65 | }; |
66 | 66 |
|
67 | 67 | export const ModelRegistrySection = { |
68 | 68 | description: |
69 | 69 | "Model registries are centralized storage solutions for managing and tracking machine learning models across various stages of development and deployment.", |
70 | | - helpLink: "https://docs.zenml.io/stack-components/model-registries" |
| 70 | + helpLink: "https://docs.zenml.io/stacks/stack-components/model-registries" |
71 | 71 | }; |
72 | 72 |
|
73 | 73 | export const DeployerSection = { |
|
0 commit comments