我在 Google Cloud Platform 中部署了一个训练有素的模型 (CNN),我可以使用 Python 客户端库或gcloud
命令从中获取预测。
我现在正在尝试使用 Dot Net 客户端 v1.25 ( https://github.com/google/google-api-dotnet-client/tree/v1.25.0 ) 来获取预测,但{"error": "Missing "instances" field in request body."}
即使请求失败了我发送的 JSON 格式如下:
{"instances": [{"image":<base64ImageData>, "key":"1"}]}
我可以使用该库使用该List()
方法获取可用模型的列表。
代码如下:
using System;
using System.Text;
using Google.Apis.Auth.OAuth2;
using System.IO;
using Google.Apis.Services;
using Google.Apis.CloudMachineLearningEngine.v1beta1.Data;
using Newtonsoft.Json;
namespace GoogleCloudTesting
{
Class Program
{
static void Main(string[] args)
{
GoogleCredential credential = GoogleCredential.GetApplicationDefaultAsync().Result;
var service = new Google.Apis.CloudMachineLearningEngine.v1beta1.CloudMachineLearningEngineService(
new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "Testing"
}
);
string jsonImagesPath = @"c:\path\to\images.json"; // {"instances": [{"image":<base64imagedata>, "key":"1"}]}
string json = File.ReadAllText(jsonImagesPath);
var request = new GoogleCloudMlV1beta1PredictRequest
{
HttpBody = new GoogleApiHttpBody { Data = json }
};
var predictRequest = service.Projects.Predict(request, "projects/my_project/models/my_model/versions/V1");
var result = predictRequest.Execute();
Console.WriteLine(result.Data); // null
}
}
}
任何帮助表示赞赏,谢谢。