Complete the code to import the Kubeflow Pipelines SDK client.
from kfp import [1]
The client module is used to interact with Kubeflow Pipelines programmatically.
Complete the code to create a Kubeflow Pipelines client connected to the default endpoint.
kfp_client = client.[1]()The Client() constructor creates a client object to interact with Kubeflow Pipelines.
Fix the error in the pipeline function decorator to define a Kubeflow pipeline.
@dsl.[1]The @dsl.pipeline decorator defines a Kubeflow pipeline function.
Fill both blanks to compile a Kubeflow pipeline to a YAML file.
compiler.[1](pipeline_func=my_pipeline, package_path='[2]')
The compile function compiles the pipeline function into a YAML file named 'pipeline.yaml'.
Fill all three blanks to run a compiled pipeline on Kubeflow Pipelines.
kfp_client.[1](experiment_name='[2]', job_name='[3]', pipeline_package_path='pipeline.yaml')
The method create_run_from_pipeline_package runs the pipeline YAML file under the experiment 'my_experiment' with the job name 'my_run'.