什么是聚合Kubeflow Pipleine kfp.ParallelFor结果的好模式?
发布于 2020-05-05 20:24:33
目前,这可能不受支持:
发布于 2021-07-30 07:04:12
这并不完全符合您的要求,但我们的变通方法是将并行任务的结果写入S3,然后在后处理任务中简单地收集它们。
with dsl.ParallelFor(preprocessing_task.output) as plant_item:
predict_plant='{}'.format(plant_item)
forecasting_task = forecasting_op(predict_plant, ....).after(preprocessing_task)
postprocessing_task = postprocessing_op(...).after(forecasting_task)https://stackoverflow.com/questions/60764436
复制相似问题