GCP顶点AI- gcloud AI端点创建的返回值是什么?
gcloud AI端点的返回值在哪里定义和记录?
我关注GCP COURSERA VETEX AI模型监视实验:vertex ai模型监视,任务要求从 gcloud ai端点创建
命令输出中获取模型端点ID。
# Deploy your model to the endpoint
ENDPOINT_NAME = "churn"
output = !gcloud --quiet beta ai endpoints create --display-name=$ENDPOINT_NAME --format="value(name)"
print("endpoint output: ", output)
ENDPOINT = output[-1]
ENDPOINT_ID = # TODO: Your code goes here
gcloud ai endpoints创建文档文档没有显示其回报值的信息。
它在哪里记录?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该命令返回长期运行操作。 There is also documentation of it in
请参阅示例curl 请求 - 运行操作:
注意:可以在您的请求中通过API找到操作,我的是创建数据集
结果:
The command returns long running operation. There is also documentation of it in Python, see Returns section.
See sample curl request for long-running operation:
note: OPERATION_NAME can be found on your request via API, mine was creation of dataset
Result:
