gpt4 book ai didi

python - 预测模型的 swagger.json 示例 json 似乎没有返回预测

转载 作者:行者123 更新时间:2023-12-01 07:07:23 25 4
gpt4 key购买 nike

尝试使用 Azure ML 服务对预测模型进行预测时,swagger.json 包含以下输入架构:

"example": {"data": [{"date": "2019-08-30T00:00:00.000Z", "y_query": 1.0}]}

但是,当我将其作为输入来生成预测时,我收到以下错误:

data= {"data": [{"date": "2019-08-30T00:00:00.000Z", "y_query": 1 }]}
# Convert to JSON string
input_data = json.dumps(data)

# Set the content type
headers = {'Content-Type': 'application/json'}
# If authentication is enabled, set the authorization header
#headers['Authorization'] = f'Bearer {key}'

# Make the request and display the response
resp = requests.post(scoring_uri, input_data, headers=headers)
print(resp.text)

"{\"error\": \"DataException:\\n\\tMessage: y values are present for each date. Nothing to forecast.\\n\\tInnerException None\\n\\tErrorResponse \\n{\\n    \\\"error\\\": {\\n        \\\"code\\\": \\\"UserError\\\",\\n        \\\"inner_error\\\": {\\n            \\\"code\\\": \\\"InvalidData\\\"\\n        },\\n        \\\"message\\\": \\\"y values are present for each date. Nothing to forecast.\\\"\\n    }\\n}\"}"

我尝试不传递 y 值,这会导致“预期两个轴得到一个”并传递 0 作为 y_query。任何有关如何使用这种方法进行预测的指导将不胜感激。

Web 服务的文档位于:https://learn.microsoft.com/en-us/azure/machine-learning/service/how-to-consume-web-service

最佳答案

尝试使用 nan 作为 y_query 的值。并确保日期是训练集中使用的时间单位之后的下一个时间单位。

关于python - 预测模型的 swagger.json 示例 json 似乎没有返回预测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58377444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com