个人主页:研学社的博客
欢迎来到本博客❤️❤️
博主优势:博客内容尽量做到思维缜密,逻辑清晰,为了方便读者。
⛳️座右铭:行百里者,半于九十。
本文目录如下:
目录
1 概述
2 运行结果
3 参考文献
4 Python代码实现
预测成本模型是开发和验证新的优化方法和控制工具的先决条件。在这里,我将展示一种使用机器学习算法进行预测的简单而强大的方法。
在这里,我将使用机器学习算法根据历史价格记录训练我的机器并预测预期的未来价格。让我们看看我们的算法预测的准确性。我会用——
部分代码:
# getting the predicted natural gas price of 2020 inputs = dataset_total[len(dataset_total) - len(test_data) - 60:].values inputs = inputs.reshape(-1,1) inputs = scaler.transform(inputs) X_test = [] for i in range(60,448): #60 + test_data.shape[0] = 448 X_test.append(inputs[i-60:i, 0]) X_test = np.array(X_test) X_test = np.reshape(X_test, (X_test.shape[0], X_test.shape[1], 1)) pred_price = model.predict(X_test) pred_price = scaler.inverse_transform(pred_price) plt.plot(test_data.values, color='red', label='Actual Natural Gas Price') plt.plot(pred_price, color='blue', label='Predicted Price') plt.title('Natural Gas Price Prediction') plt.xlabel('Time') plt.ylabel('Natural Gas Price') plt.legend(loc='best')
部分理论来源于网络,如有侵权请联系删除。
[1]赵齐昌. 基于XGBoost-LSTM组合模型的电力负荷预测研究[D].陕西理工大学,2022.DOI:10.27733/d.cnki.gsxlg.2022.000172.
[2]谭海旺,杨启亮,邢建春,黄克峰,赵硕,胡浩宇.基于XGBoost-LSTM组合模型的光伏发电功率预测[J].太阳能学报,2022,43(08):75-81.DOI:10.19912/j.0254-0096.tynxb.2021-0005.