1

我刚刚在 Google vertex AI 上部署了一个 ML 模型,它可以使用 vertex AI Web 界面进行预测。但是是否可以从浏览器发送请求,例如,发送到这个部署的模型。就像是

http://myapp.cloud.google.com/input="features of an example" 

并将预测作为输出。谢谢

4

1 回答 1

4

是的,您可以使用端点 URL 发送。

https://us-central1-aiplatform.googleapis.com/v1beta1/projects/<PROJECT_ID>/locations/us-central1/endpoints/<ENDPOINT_ID>:predict

数据应该在 POST 参数中给出。

{
  "instances": 
    [1.4838871833555929,
 1.8659883497083019,
 2.234620276849616,
 1.0187816540094903,
 -2.530890710602246,
 -1.6046416850441676,
 -0.4651483719733302,
 -0.4952254087173721,
 0.774676376873553]
}

URL 应该是基于区域的。

于 2021-09-10T05:48:57.240 回答