政策资讯

Policy Information


EL之GB(GBM):利用GB对回归(性别属性编码+调2参)问题(整数值年龄预测)建模

来源: 重庆市软件正版化服务中心    |    时间: 2022-09-19    |    浏览量: 64944    |   

EL之GB(GBM):利用GB对回归(性别属性编码+调2参)问题(整数值年龄预测)建模

目录

输出结果

设计思路

核心代码


输出结果

T1、

T2、

设计思路

核心代码

  1. T1
  2. nEst = 2000
  3. depth = 5
  4. learnRate = 0.003
  5. maxFeatures = None
  6. subsamp = 0.5
  7. T2
  8. nEst = 2000
  9. depth = 5
  10. learnRate = 0.005
  11. maxFeatures = 3
  12. subsamp = 0.5
  13. abaloneGBMModel = ensemble.GradientBoostingRegressor(n_estimators=nEst, max_depth=depth,
  14. learning_rate=learnRate, max_features=maxFeatures,
  15. subsample=subsamp, loss='ls')
  16. abaloneGBMModel.fit(xTrain, yTrain)
  17. compute mse on test set
  18. msError = []
  19. predictions = abaloneGBMModel._staged_decision_function(xTest)
  20. for p in predictions:
  21. msError.append(mean_squared_error(yTest, p))

评论

QQ咨询 扫一扫加入群聊,了解更多平台咨询
微信咨询 扫一扫加入群聊,了解更多平台咨询
意见反馈
立即提交
QQ咨询
微信咨询
意见反馈