predictions = [] ^ IndentationError: expected an indented block
时间: 2023-11-01 09:56:31 浏览: 159
infosec-predictions-2019:信息安全对安全性的预测
引用:TypeError: expected Tensor as element 0 in argument 0, but got numpy.ndarray 问题描述。
引用:运行该示例会在每次迭代时打印预测值和期望值。我们还可以计算预测的最终均方误差分数(MSE),为其他ARIMA配置提供比较点。predicted=349.117688, expected=342.300000 predicted=306.512968, expected=339.700000 predicted=387.376422, expected=440.400000 predicted=348.154111, expected=315.900000 predicted=386.308808, expected=439.300000 predicted=356.081996, expected=401.300000 predicted=446.379501, expected=437.400000 predicted=394.737286, expected=575.500000 predicted=434.915566, expected=407.600000 predicted=507.923407, expected=682.000000 predicted=435.483082, expected=475.300000 predicted=652.743772, expected=581.300000 predicted=546.343485, expected=646.900000 Test MSE: 6958.325。
引用:我们可以看到Shampoo Sales数据集有一个明显的趋势。这表明时间序列不是静止的并且需要差分以使其静止,至少差异为1。让我们快速浏览一下时间序列的自相关图。这也是Pandas内置的。下面的示例绘制了时间序列中大量滞后的自相关。
根据你的描述,出现了一个IndentationError错误,该错误通常是由于缩进错误导致的。在Python中,缩进是非常重要的,因为它表示代码块的开始和结束。在你的代码中,错误的缩进可能导致了该错误的出现。请确保你的代码块有正确的缩进,例如:
predictions = []
for i in range(10):
predictions.append(i)
请注意,在Python中使用缩进时,通常使用4个空格或者一个制表符来表示每一级缩进。
阅读全文