我正在为我在建模器食谱中找到的预测脚本而苦苦挣扎,它应该很容易解决,但是很久以前我就做过这种事情。
错误消息:应为“1”到“0”范围内的数字,但找到“1”
该脚本确定要预测的行数并将其读入局部变量 (num_recs) 并从神经网络模型迭代得分,在每次成功评分后,它会运行一个新行进行评分。结果是 7 天的预测。
这是脚本片段。如果有人能尽快看一下,我将不胜感激,因为时间很短(即明天,周五),那将是非常受欢迎的。
var num_recs
var idx
execute rec_count_table
> # count the number of records to be forecast
set num_recs = value rec_count_table.output at 1 1
clear outputs
for idx from 1 to num_recs
> # generate forecast one record at a time
execute forecast_data_overwrite
end for