Custom_Vision_Prediction_3.0 REST API 出现 401 错误
Custom_Vision_Prediction_3.0 REST API Giving 401 error
我正在尝试调用自定义视觉预测分类 RestAPI 端点 (https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.0/operations/5c82db60bf6a2b11a8247c15)
我正在使用美国中南部端点
我从资源管理 Azure 门户中的密钥部分获得了所需的训练和预测密钥
以下是我调用自定义视觉预测分类 RestAPI 端点
时得到的响应
{
"error": {
"code": "401",
"message": "The ClassifyImage Operation under Custom_Vision_Prediction_3.0 API is not supported with the current subscription key and pricing tier Custom_Vision.Training.S0."
}
}
我看到它说我当前的定价层不支持 3.0 API 但计划 S0(标准)每 1k 张图像花费 0.35 美元,我的订阅计划是按需付费-去
那为什么我会收到这个错误?
感谢任何帮助
当您在 Azure 订阅中创建自定义愿景时,会为您创建两种资源:一种用于训练,一种用于预测。每个都有一组专用的 API 键。
确保使用正确的资源进行训练或预测。
我正在尝试调用自定义视觉预测分类 RestAPI 端点 (https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.0/operations/5c82db60bf6a2b11a8247c15)
我正在使用美国中南部端点
我从资源管理 Azure 门户中的密钥部分获得了所需的训练和预测密钥
以下是我调用自定义视觉预测分类 RestAPI 端点
时得到的响应{
"error": {
"code": "401",
"message": "The ClassifyImage Operation under Custom_Vision_Prediction_3.0 API is not supported with the current subscription key and pricing tier Custom_Vision.Training.S0."
}
}
我看到它说我当前的定价层不支持 3.0 API 但计划 S0(标准)每 1k 张图像花费 0.35 美元,我的订阅计划是按需付费-去
那为什么我会收到这个错误?
感谢任何帮助
当您在 Azure 订阅中创建自定义愿景时,会为您创建两种资源:一种用于训练,一种用于预测。每个都有一组专用的 API 键。
确保使用正确的资源进行训练或预测。