通过 .Net 连接顶点 ai 端点
connect vertex ai endpoint through .Net
有什么方法可以通过.Net代码连接google云平台服务vertex ai端点吗?我是 gcp 顶点的新手。任何帮助都非常有用。
dot net 可以参考Google.Cloud.AIPlatform.V1 documentation。您可以从以下开始:
- 正在安装来自 Google AI Platform nuget
的软件包
- 如果您还没有端点,可以查看 Google.Cloud.AIPlatform.V1.EndpointServiceClient。您可以使用此 class 来管理端点,例如创建端点、删除端点、部署端点等。
- 检查这个 EndpointServiceClient code sample 的用法。
- 如果您有一个端点并且想要 运行 使用它进行预测,您可以查看 Google.Cloud.AIPlatform.V1.PredictionServiceClient。您可以使用此 class 来使用您的端点执行预测。
- 特别是 Predict(EndpointName, IEnumerable, Value, CallSettings) 接受端点作为参数的方法。
- 检查这个 PredictionServiceClient code sample 的用法。
有什么方法可以通过.Net代码连接google云平台服务vertex ai端点吗?我是 gcp 顶点的新手。任何帮助都非常有用。
dot net 可以参考Google.Cloud.AIPlatform.V1 documentation。您可以从以下开始:
- 正在安装来自 Google AI Platform nuget 的软件包
- 如果您还没有端点,可以查看 Google.Cloud.AIPlatform.V1.EndpointServiceClient。您可以使用此 class 来管理端点,例如创建端点、删除端点、部署端点等。
- 检查这个 EndpointServiceClient code sample 的用法。
- 如果您有一个端点并且想要 运行 使用它进行预测,您可以查看 Google.Cloud.AIPlatform.V1.PredictionServiceClient。您可以使用此 class 来使用您的端点执行预测。
- 特别是 Predict(EndpointName, IEnumerable, Value, CallSettings) 接受端点作为参数的方法。
- 检查这个 PredictionServiceClient code sample 的用法。