Configure your pipeline to add compute
Add more resources to your pipeline configuration.
import os
# Assuming training_pipeline is imported from your pipeline module
# from my_project.pipelines import training_pipeline
pipeline_args = {}
pipeline_args["config_path"] = os.path.join(
config_folder, "training_rf.yaml"
)
# Configure the pipeline
training_pipeline_configured = training_pipeline.with_options(**pipeline_args)
# Create a run
training_pipeline_configured()Breaking down our configuration YAML
The Docker settings
Associating a ZenML Model

Passing parameters
Scaling compute on the cloud
Last updated
Was this helpful?