gpt4 book ai didi

python - 数据输入期间Azure ML时间序列模型推理错误(python)

转载 作者:行者123 更新时间:2023-12-03 02:29:54 24 4
gpt4 key购买 nike

在 Azure ML Studio 中,我使用 AutoML 准备了一个用于时间序列预测的模型。所有数据集中的数据都存在一些罕见的差距。我使用以下代码来调用已部署的 Azure AutoML 模型作为 Web 服务:

import requests
import json
import pandas as pd

# URL for the web service
scoring_uri = 'http://xxxxxx-xxxxxx-xxxxx-xxxx.xxxxx.azurecontainer.io/score'

# Two sets of data to score, so we get two results back
new_data = pd.DataFrame([
['2020-10-04 19:30:00',1.29281,1.29334,1.29334,1.29334,1],
['2020-10-04 19:45:00',1.29334,1.29294,1.29294,1.29294,1],
['2020-10-04 21:00:00',1.29294,1.29217,1.29334,1.29163,34],
['2020-10-04 21:15:00',1.29217,1.29257,1.29301,1.29115,195]],
columns=['1','2','3','4','5','6']
)
# Convert to JSON string
input_data = json.dumps({'data': new_data.to_dict(orient='records')})

# Set the content type
headers = {'Content-Type': 'application/json'}

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

我收到错误:

{\"error\": \"DataException:\\n\\tMessage: No y values were provided. We expected non-null target values as prediction context because there is a gap between train and test and the forecaster depends on previous values of target. If it is expected, please run forecast() with ignore_data_errors=True. In this case the values in the gap will be imputed.\\n\\tInnerException: None\\n\\tErrorResponse \\n{\\n

我尝试将“ignore_data_errors=True”添加到代码的不同部分,但没有成功,因此出现另一个错误:

TypeError: __init__() got an unexpected keyword argument 'ignore_data_errors'

我非常感谢任何帮助,因为我陷入了困境。

最佳答案

为了避免在时间序列预测中出现所提供的错误,您应该为预测范围启用自动检测。这意味着只有理想的时间序列数据才能使用手动设置的功能,这对现实情况没有帮助。 see the image

关于python - 数据输入期间Azure ML时间序列模型推理错误(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65606597/

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