我正在尝试创建一个循环运行的 kubeflow 管道,如下所示:
from kfp import compiler
compiler.Compiler().compile(
pipeline_func=my_pipeline,
package_path='pipelines/my_pipeline.tgz')
from kfp.v2.google.client import AIPlatformClient
api_client = AIPlatformClient(project_id='...',
region='...')
api_client.create_schedule_from_job_spec(
job_spec_path='pipelines/my_pipeline.tgz',
schedule='* * * * *',
time_zone='UTC',
parameter_values=arguments
)
第一个命令在 YAML 中创建管道规范,但第二个命令需要 JSON。
我怎样才能以编程方式[而不是通过 UI] 创建重复运行?