CustomVision:操作返回无效状态代码:'NotFound'
CustomVision: Operation returned an invalid status code: 'NotFound'
我正在使用 NuGet 包 Microsoft.Cognitive.CustomVision.Prediction
版本 1.2.0
。我创建了 1 个试验项目并用一些图像对其进行了训练。现在,当我尝试使用 PredicionEndpoint
调用 API 进行预测时,系统抛出异常:Microsoft.Rest.HttpOperationException
.
当我调试代码并检查异常时,它说:
{"Operation returned an invalid status code 'NotFound'"}
这是我的代码:
var attachmentStream = await httpClient.GetStreamAsync(imageUrl);
PredictionEndpoint endpoint = new PredictionEndpoint() {
ApiKey = "MY_CORRECT_PREDICTION_KEY"
};
var predictions = new ImagePredictionResultModel();
try {
predictions = endpoint.PredictImage(new Guid("MY_CORRECT_PROJECT_ID"), attachmentStream);
} catch (Microsoft.Rest.HttpOperationException exception) {
await context.PostAsync(exception.Body.ToString());
await context.PostAsync(exception.Data.ToString());
}
foreach(var c in predictions.Predictions) {
Console.WriteLine($ "{c.Tag}: {c.Probability}");
}
attachmentStream 是正确的图像流,我可以将它输出到特定项目的视图。
调用endpoint.PredictImage(...)
时抛出异常。
问题是您应该将其中一个训练交互标记为 default
,如 GithUb issue I created 中所述。
我正在使用 NuGet 包 Microsoft.Cognitive.CustomVision.Prediction
版本 1.2.0
。我创建了 1 个试验项目并用一些图像对其进行了训练。现在,当我尝试使用 PredicionEndpoint
调用 API 进行预测时,系统抛出异常:Microsoft.Rest.HttpOperationException
.
当我调试代码并检查异常时,它说:
{"Operation returned an invalid status code 'NotFound'"}
这是我的代码:
var attachmentStream = await httpClient.GetStreamAsync(imageUrl);
PredictionEndpoint endpoint = new PredictionEndpoint() {
ApiKey = "MY_CORRECT_PREDICTION_KEY"
};
var predictions = new ImagePredictionResultModel();
try {
predictions = endpoint.PredictImage(new Guid("MY_CORRECT_PROJECT_ID"), attachmentStream);
} catch (Microsoft.Rest.HttpOperationException exception) {
await context.PostAsync(exception.Body.ToString());
await context.PostAsync(exception.Data.ToString());
}
foreach(var c in predictions.Predictions) {
Console.WriteLine($ "{c.Tag}: {c.Probability}");
}
attachmentStream 是正确的图像流,我可以将它输出到特定项目的视图。
调用endpoint.PredictImage(...)
时抛出异常。
问题是您应该将其中一个训练交互标记为 default
,如 GithUb issue I created 中所述。