在这段代码中,我对时间序列进行了拆分,然后使用scikit learn创建了一个用于预测的SVR模型。6393.55696288--------------------------------------------------------------------------- 202 if len(uniques) > 1:
203 raise Val
使用的验证函数是5折交叉验证,因此模型有80%的训练数据和20%的测试数据。 我在阅读训练数据时遇到了一些困难。read_training_data函数是完全执行的,但是当我调用交叉验证或将训练数据拟合到模型时,会显示错误,如"ValueError: Found input variables with inconsistent当我发现这个错误时,我认为read_training_data函数中的第二个循环正在读取所有数据,结果是长度为31.765.820。t
以下是我的代码 print(len(image_dataset.data))X_train, X_test, y_train, y_test =validation.py", line 257, in check_consistent_lengthValueError: Found input variables with inconsistent numbers of samp