ML之回归预测:利用九大类机器学习算法对无人驾驶系统参数(2018年的data,18+2)进行回归预测+评估九种模型性能

相关文章
ML之回归预测:利用九大类机器学习算法对自动驾驶系统参数(2018年的data,18+2)进行回归预测+评估九种模型性能

目录

输出记录

1、第一次输出错误记录

2、第二次输出评估模型性能记录


输出记录

1、第一次输出错误记录

数据的初步查验:输出回归目标值的差异
The max target value is PeakNonedb    89
dtype: int64
The min target value is PeakNonedb    56
dtype: int64
The average target value is PeakNonedb    63.392157
dtype: float64

LiR LiR:The value of default measurement of LiR is 0.5231458055883893
LiR:R-squared value of DecisionTreeRegressor: 0.5231458055883893
LiR:The mean squared error of DecisionTreeRegressor: 25.294980943838745
LiR:The mean absoluate error of DecisionTreeRegressor: 3.608855227697136
LiR:测试141~153行数据, 
 [[ 747.01164105]
 [1534.72506527]
 [2569.73860794]
 [3646.40436281]
 [1579.9293663 ]
 [2860.34593738]
 [3736.26316737]
 [3506.55843101]
 [3519.97015753]
 [3565.68403454]
 [3666.57047459]
 [3700.74687407]]
kNN

kNNR_uni:The value of default measurement of kNNR_uni is 0.5866024699259604
kNNR_uni:R-squared value of DecisionTreeRegressor: 0.5866024699259604
kNNR_uni:The mean squared error of DecisionTreeRegressor: 21.928888888888892
kNNR_uni:The mean absoluate error of DecisionTreeRegressor: 3.2111111111111117
kNNR_uni:测试141~153行数据, 
 [[0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]
 [0.64097829]]

kNNR_dis:The value of default measurement of kNNR_dis is 0.6601811947182363
kNNR_dis:R-squared value of DecisionTreeRegressor: 0.6601811947182363
kNNR_dis:The mean squared error of DecisionTreeRegressor: 18.02586682616158
kNNR_dis:The mean absoluate error of DecisionTreeRegressor: 2.847311210973169
kNNR_dis:测试141~153行数据, 
 [[0.64115297]
 [0.64098617]
 [0.64095601]
 [0.64095674]
 [0.64098432]
 [0.64095655]
 [0.64095685]
 [0.64095705]
 [0.64095705]
 [0.64095715]
 [0.6409569 ]
 [0.64095699]]

SVM

linear_SVR:The value of default measurement of linear_SVR is 0.22831988148305604
linear_SVR:R-squared value of DecisionTreeRegressor: 0.22831988148305604
linear_SVR:The mean squared error of DecisionTreeRegressor: 40.93417678062064
linear_SVR:The mean absoluate error of DecisionTreeRegressor: 4.02480324908603
linear_SVR:测试141~153行数据, 
 [177.03008956 325.6232456  539.28353027 735.51485927 323.06294283
 568.35867934 732.77017607 736.16626099 743.3919392  747.74854384
 743.58244066 757.04564832]

poly_SVR:The value of default measurement of poly_SVR is 0.5579245050116022
poly_SVR:R-squared value of DecisionTreeRegressor: 0.5579245050116022
poly_SVR:The mean squared error of DecisionTreeRegressor: 23.45012658485137
poly_SVR:The mean absoluate error of DecisionTreeRegressor: 3.1855299673953557
poly_SVR:测试141~153行数据, 
 [-1.03092264e+06 -7.08914443e+06 -4.71673473e+07 -1.43965988e+08
 -7.08197015e+06 -4.62519130e+07 -1.43821606e+08 -1.34024997e+08
 -1.33032109e+08 -1.32825434e+08 -1.32921612e+08 -1.33055776e+08]

rbf_SVR:The value of default measurement of rbf_SVR is 0.48978384736121017
rbf_SVR:R-squared value of DecisionTreeRegressor: 0.48978384736121017
rbf_SVR:The mean squared error of DecisionTreeRegressor: 27.064683522730615
rbf_SVR:The mean absoluate error of DecisionTreeRegressor: 3.248361364253994
rbf_SVR:测试141~153行数据, 
 [0.38231553 0.38231553 0.38231553 0.38231553 0.38231553 0.38231553
 0.38231553 0.38231553 0.38231553 0.38231553 0.38231553 0.38231553]

DT DTR:The value of default measurement of DTR is 0.2302209550962223
DTR:R-squared value of DecisionTreeRegressor: 0.2302209550962223
DTR:The mean squared error of DecisionTreeRegressor: 40.833333333333336
DTR:The mean absoluate error of DecisionTreeRegressor: 4.111111111111111
DTR:测试141~153行数据, 
 [3.89129343 3.89129343 3.89129343 3.89129343 3.89129343 3.89129343
 3.89129343 3.89129343 3.89129343 3.89129343 3.89129343 3.89129343]
RF RFR:The value of default measurement of RFR is 0.6240708685469911
RFR:R-squared value of DecisionTreeRegressor: 0.6240708685469911
RFR:The mean squared error of DecisionTreeRegressor: 19.941358024691358
RFR:The mean absoluate error of DecisionTreeRegressor: 2.9907407407407405
RFR:测试141~153行数据 
 [2.89029058 3.09049115 3.09049115 3.09049115 3.09049115 3.09049115
 3.09049115 2.90206708 3.10226765 3.10226765 3.09049115 3.09049115]
ETR ETR:The value of default measurement of ETR is 0.7190149388336945
ETR:R-squared value of DecisionTreeRegressor: 0.7190149388336945
ETR:The mean squared error of DecisionTreeRegressor: 14.904999999999989
ETR:The mean absoluate error of DecisionTreeRegressor: 2.6666666666666656
ETR:测试141~153行数据 
 [2.51344245 2.54877196 2.54877196 2.54877196 2.54877196 2.54877196
 2.54877196 2.33679488 2.54877196 2.54877196 2.54877196 2.54877196]
GB/GD

SGDR:The value of default measurement of SGDR is 0.4691791802079268
SGDR:R-squared value of DecisionTreeRegressor: 0.4691791802079268
SGDR:The mean squared error of DecisionTreeRegressor: 28.157668902967323
SGDR:The mean absoluate error of DecisionTreeRegressor: 3.693309750338626
SGDR:测试141~153行数据 
 [125.22055498 181.45266125 288.54749558 392.31320313 184.45855476
 292.27252144 396.6089051  407.38658412 406.82100285 407.48230658
 408.14902864 407.91771216]

GBR:The value of default measurement of GBR is 0.6340219593738237
GBR:R-squared value of DecisionTreeRegressor: 0.6340219593738237
GBR:The mean squared error of DecisionTreeRegressor: 19.413497190530663
GBR:The mean absoluate error of DecisionTreeRegressor: 2.792040256427659
GBR:测试141~153行数据 
 [2.79877177 3.34564311 3.34564311 3.41538604 3.48125832 3.40431433
 3.41538604 2.88403709 3.41983671 3.41983671 3.41983671 3.41983671]

LGB [LightGBM] [Warning] feature_fraction is set=0.6, colsample_bytree=1.0 will be ignored. Current value: feature_fraction=0.6
[LightGBM] [Warning] min_data_in_leaf is set=18, min_child_samples=20 will be ignored. Current value: min_data_in_leaf=18
[LightGBM] [Warning] min_sum_hessian_in_leaf is set=0.001, min_child_weight=0.001 will be ignored. Current value: min_sum_hessian_in_leaf=0.001
[LightGBM] [Warning] bagging_fraction is set=0.7, subsample=1.0 will be ignored. Current value: bagging_fraction=0.7
LGB:The value of default measurement of LGB is 0.7257085935738725
LGB:R-squared value of DecisionTreeRegressor: 0.6340219593738237
LGB:The mean squared error of DecisionTreeRegressor: 19.413497190530663
LGB:The mean absoluate error of DecisionTreeRegressor: 2.792040256427659
LGB:测试141~153行数据 
 [2.35312797 2.34599463 2.34599463 2.34599463 2.34599463 2.34599463
 2.34599463 2.34599463 2.34599463 2.34599463 2.34599463 2.34599463]

2、第二次输出评估模型性能记录

LiR LiR:The value of default measurement of LiR is 0.5231458055883893
LiR:R-squared value of DecisionTreeRegressor: 0.5231458055883893
LiR:The mean squared error of DecisionTreeRegressor: 25.294980943838745
LiR:The mean absoluate error of DecisionTreeRegressor: 3.608855227697136
kNN

kNNR_uni:The value of default measurement of kNNR_uni is 0.5866024699259604
kNNR_uni:R-squared value of DecisionTreeRegressor: 0.5866024699259604
kNNR_uni:The mean squared error of DecisionTreeRegressor: 21.928888888888892
kNNR_uni:The mean absoluate error of DecisionTreeRegressor: 3.2111111111111117

kNNR_dis:The value of default measurement of kNNR_dis is 0.6601811947182363
kNNR_dis:R-squared value of DecisionTreeRegressor: 0.6601811947182363
kNNR_dis:The mean squared error of DecisionTreeRegressor: 18.02586682616158
kNNR_dis:The mean absoluate error of DecisionTreeRegressor: 2.847311210973169

SVM

linear_SVR:The value of default measurement of linear_SVR is 0.22831988148305604
linear_SVR:R-squared value of DecisionTreeRegressor: 0.22831988148305604
linear_SVR:The mean squared error of DecisionTreeRegressor: 40.93417678062064
linear_SVR:The mean absoluate error of DecisionTreeRegressor: 4.02480324908603

poly_SVR:The value of default measurement of poly_SVR is 0.5579245050116022
poly_SVR:R-squared value of DecisionTreeRegressor: 0.5579245050116022
poly_SVR:The mean squared error of DecisionTreeRegressor: 23.45012658485137
poly_SVR:The mean absoluate error of DecisionTreeRegressor: 3.1855299673953557

rbf_SVR:The value of default measurement of rbf_SVR is 0.48978384736121017
rbf_SVR:R-squared value of DecisionTreeRegressor: 0.48978384736121017
rbf_SVR:The mean squared error of DecisionTreeRegressor: 27.064683522730615
rbf_SVR:The mean absoluate error of DecisionTreeRegressor: 3.248361364253994

DT DTR:The value of default measurement of DTR is -0.3190975606208273
DTR:R-squared value of DecisionTreeRegressor: -0.3190975606208273
DTR:The mean squared error of DecisionTreeRegressor: 69.97222222222223
DTR:The mean absoluate error of DecisionTreeRegressor: 5.027777777777778
RF RFR:The value of default measurement of RFR is 0.6920860546642035
RFR:R-squared value of DecisionTreeRegressor: 0.6920860546642035
RFR:The mean squared error of DecisionTreeRegressor: 16.333456790123456
RFR:The mean absoluate error of DecisionTreeRegressor: 2.861111111111111
ETR ETR:The value of default measurement of ETR is 0.6602917945510349
ETR:R-squared value of DecisionTreeRegressor: 0.6602917945510349
ETR:The mean squared error of DecisionTreeRegressor: 18.019999999999996
ETR:The mean absoluate error of DecisionTreeRegressor: 3.0055555555555555
GB/GD

SGDR:The value of default measurement of SGDR is 0.46348293353800685
SGDR:R-squared value of DecisionTreeRegressor: 0.46348293353800685
SGDR:The mean squared error of DecisionTreeRegressor: 28.459829296344633
SGDR:The mean absoluate error of DecisionTreeRegressor: 3.706383834628725

GBR:The value of default measurement of GBR is 0.6242967693280365
GBR:R-squared value of DecisionTreeRegressor: 0.6242967693280366
GBR:The mean squared error of DecisionTreeRegressor: 19.92937499923262
GBR:The mean absoluate error of DecisionTreeRegressor: 2.8923697398449524

LGB

[LightGBM] [Warning] feature_fraction is set=0.6, colsample_bytree=1.0 will be ignored. Current value: feature_fraction=0.6
[LightGBM] [Warning] min_data_in_leaf is set=18, min_child_samples=20 will be ignored. Current value: min_data_in_leaf=18
[LightGBM] [Warning] min_sum_hessian_in_leaf is set=0.001, min_child_weight=0.001 will be ignored. Current value: min_sum_hessian_in_leaf=0.001
[LightGBM] [Warning] bagging_fraction is set=0.7, subsample=1.0 will be ignored. Current value: bagging_fraction=0.7

LGB:The value of default measurement of LGB is 0.7257085935738725
LGB:R-squared value of DecisionTreeRegressor: 0.7257085935738725
LGB:The mean squared error of DecisionTreeRegressor: 14.54993157220446
LGB:The mean absoluate error of DecisionTreeRegressor: 2.9797938407355122

ML之回归预测:利用九大类机器学习算法对无人驾驶系统参数(2018年的data,18+2)进行回归预测+评估九种模型性能相关推荐

  1. ML之回归预测:利用九大类机器学习算法对无人驾驶汽车系统参数(2018年的data,18+2)进行回归预测值VS真实值

    ML之回归预测:利用九大类机器学习算法对无人驾驶汽车系统参数(2018年的data,18+2)进行回归预测值VS真实值 相关文章 ML之回归预测:利用九大类机器学习算法对无人驾驶汽车系统参数(2018 ...

  2. java ML回归预测_ML之回归预测:利用九大类机器学习算法对无人驾驶汽车系统参数(2018年的data,18+2)进行回归预测值VS真实值...

    ML之回归预测:利用九大类机器学习算法对无人驾驶汽车系统参数(2018年的data,18+2)进行回归预测值VS真实值 目录 输出结果 数据的初步查验:输出回归目标值的差异 The max targe ...

  3. ML之回归预测:利用八(9-1)种机器学习算法对无人驾驶汽车参数(2017年的data,18+2)进行回归预测值VS真实值

    ML之回归预测:利用八(9-1)种机器学习算法对无人驾驶汽车参数(2017年的data,18+2)进行回归预测值VS真实值 目录 模型评估 输出结果 模型评估 相关文章:ML之回归预测:利用八(9-1 ...

  4. python常用代码入门-入门十大Python机器学习算法(附代码)

    入门十大Python机器学习算法(附代码) 今天,给大家推荐最常用的10种机器学习算法,它们几乎可以用在所有的数据问题上: 1.线性回归 线性回归通常用于根据连续变量估计实际数值(房价.呼叫次数.总销 ...

  5. 图解十大经典机器学习算法入门

    弱人工智能近几年取得了重大突破,悄然间,已经成为每个人生活中必不可少的一部分.以我们的智能手机为例,看看到底温藏着多少人工智能的神奇魔术. 下图是一部典型的智能手机上安装的一些常见应用程序,可能很多人 ...

  6. ML之回归预测:利用十类机器学习算法(线性回归、kNN、SVM、决策树、随机森林、极端随机树、SGD、提升树、LightGBM、XGBoost)对波士顿数据集回归预测(模型评估、推理并导到csv)

    ML之回归预测:利用十类机器学习算法(线性回归.kNN.SVM.决策树.随机森林.极端随机树.SGD.提升树.LightGBM.XGBoost)对波士顿数据集[13+1,506]回归预测(模型评估.推 ...

  7. ML之回归预测:利用两种机器学习算法(LiR,XGBoost(调优+重要性可视化+特征选择模型))对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值

    ML之回归预测:利用两种机器学习算法(LiR,XGBoost(调优+重要性可视化+特征选择模型))对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值 目录 输出结果 1. ...

  8. ML之回归预测:利用十(xgboost,10-1)种机器学习算法对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值——bug调试记录

    ML之回归预测:利用十(xgboost,10-1)种机器学习算法对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值--bug调试记录 目录 输出结果 1.增加XGBR算法 ...

  9. 推荐九大类实用的AI工具网站 | 最实用的AI工具网站推荐大全(建议收藏!!!)

    推荐九大类实用的AI工具网站 | 最实用的AI工具网站推荐大全(建议收藏!!!) 引言 随着AI技术的快速发展,越来越多的网站开始提供AI工具,以帮助用户解决日常工作和生活中的问题.在这篇博客中,将为 ...

最新文章

  1. ​ROS必须理解的概念
  2. Android studio ButterKnife插件
  3. 根据文件属性或权限进行find查找
  4. 加密解密时遇到的不正确的数据以及要解密的数据长度无效问题解决方案
  5. js弹出对话框的方法总结
  6. ajax获取后台数据出错parsererror
  7. android 屏幕旋转不重新加载,Android webview旋转屏幕导致页面重新加载问题解决办法...
  8. ruby array_Ruby中带有示例的Array.fill()方法(3)
  9. 使用Fiddler对android应用抓包 专题
  10. 一周小结(2016-05-16~2016-05-21)
  11. mysql 事务 实现_什么是mysql的事务和实现
  12. java 设置session超时_Java设置session超时(失效)的时间
  13. MacOs提升效率必备软件
  14. c4dr20怎么安装oc渲染器怎么安装_[C4D插件] OTOY正式发布OC渲染器OctaneRender4 For C4D 支持R16-R20 Demo版已开放下载(Win)...
  15. etal斜体吗 参考文献_参考文献的标准格式
  16. vue3+TDesign实现表格序号递增(t-table)
  17. 计算机类毕业设计评语导师评语,本科生毕业设计导师评语参考
  18. 吐血分享:QQ群霸屏技术教程之霸屏实施细则
  19. Python正则表达式-re模块奇技淫巧
  20. 通过码云来学习Git的进阶技能(文末附福利!)

热门文章

  1. aida64 extreme 序列号_轻声问海关,规范申报错了谁负责?底料来源四川行不行?没有公式定价行不行?序列号是料号行不行?...
  2. Armv8-A 架构概述
  3. SPIDR - 完美分割用户故事的五种简单技巧
  4. (二)微服务分布式云架构 - spring cloud整合企业架构的技术点
  5. SVN提示:由于目标机器积极拒绝,无法连接 的解决方法
  6. UT斯达康XV6700应用及常见问题
  7. 数据库视频总结一(概述)
  8. 这是一个有趣的问题,Java 8 Lambda 表达式被编译成了什么?
  9. 凌晨1点突发致命生产事故!看的我惊心动魄…
  10. 招程序员,得招 “会编程” 的