简体   繁体   English

有什么方法可以在 UI 中命名 Vertex Pipelines 组件

[英]Is there any way to name Vertex Pipelines components in the UI

The Vertex Pipelines UI uses component name with numeric suffix as the default name in the UI. Vertex Pipelines UI 使用带有数字后缀的组件名称作为 UI 中的默认名称。 Is this customizable?这是可定制的吗?

For a regular step, you can use .set_display_name('foo') .对于常规步骤,您可以使用.set_display_name('foo') Reference: https://kubeflow-pipelines.readthedocs.io/en/master/source/dsl.html#kfp.dsl.PipelineTask.set_display_name参考: https://kubeflow-pipelines.readthedocs.io/en/master/source/dsl.html#kfp.dsl.PipelineTask.set_display_name

For parallelFor , you can do the following (KFP SDK V2.0+ only)对于parallelFor ,您可以执行以下操作(仅限 KFP SDK V2.0+)

with dsl.ParallelFor([], name='bar') as yv: 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 Vertex AI 管道中读取数据 - Reading Data in Vertex AI Pipelines Vertex AI 管道导入自定义模块 - Vertex AI pipelines import custom modules 在 Vertex AI 上的 Kubeflow 管道中运行 ID - Run ID in Kubeflow Pipelines on Vertex AI 有什么方法可以获取 Fortran 变量的名称? - There any way to get name of Fortran variable? 有没有办法在 Azure Synapse Analytics 中执行 SQL 查询而不以编程方式创建管道 - Is there any way to execute the SQL query in Azure Synapse Analystics without creating Pipelines Programatically 如何跟踪来自 Vertex AI 管道的参数和指标 - How to track parameter and metrics from Vertex AI pipelines 有什么方法可以在 GCP Vertex AI 工作台中以编程方式执行托管笔记本? - Any way to programatically execute a Managed notebooks inside GCP Vertex AI workbench? 使用 Vertex AI Pipelines 通过 GPU 运行自定义 Docker 容器 - 如何安装 NVIDIA 驱动程序? - Running custom Docker container with GPU using Vertex AI Pipelines - how to install NVIDIA driver? 有什么方法可以禁用或增加 Kubernetes 中的端口名称长度? - Is there any way to disable or increase port name length in Kubernetes? 有没有办法将公司信息添加到 Alexa 服务并在没有调用名称的情况下使用它? - Is there any way to add company info to Alexa service and use it without invocation name?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM