楼主: ReneeBK
1573 0

[Case Study]Gradient Boosted Tree Classification using Python [推广有奖]

  • 1关注
  • 62粉丝

VIP

学术权威

14%

还不是VIP/贵宾

-

TA的文库  其他...

R资源总汇

Panel Data Analysis

Experimental Design

威望
1
论坛币
49437 个
通用积分
52.4104
学术水平
370 点
热心指数
273 点
信用等级
335 点
经验
57815 点
帖子
4006
精华
21
在线时间
582 小时
注册时间
2005-5-8
最后登录
2023-11-26

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
  1. from __future__ import print_function

  2. import sys

  3. from pyspark import SparkContext
  4. from pyspark.ml.classification import GBTClassifier
  5. from pyspark.ml.feature import StringIndexer
  6. from pyspark.ml.regression import GBTRegressor
  7. from pyspark.mllib.evaluation import BinaryClassificationMetrics, RegressionMetrics
  8. from pyspark.sql import Row, SQLContext

  9. """
  10. A simple example demonstrating a Gradient Boosted Trees Classification/Regression Pipeline.
  11. Note: GBTClassifier only supports binary classification currently
  12. Run with:
  13.   bin/spark-submit examples/src/main/python/ml/gradient_boosted_trees.py
  14. """


  15. def testClassification(train, test):
  16.     # Train a GradientBoostedTrees model.

  17.     rf = GBTClassifier(maxIter=30, maxDepth=4, labelCol="indexedLabel")

  18.     model = rf.fit(train)
  19.     predictionAndLabels = model.transform(test).select("prediction", "indexedLabel") \
  20.         .map(lambda x: (x.prediction, x.indexedLabel))

  21.     metrics = BinaryClassificationMetrics(predictionAndLabels)
  22.     print("AUC %.3f" % metrics.areaUnderROC)


  23. def testRegression(train, test):
  24.     # Train a GradientBoostedTrees model.

  25.     rf = GBTRegressor(maxIter=30, maxDepth=4, labelCol="indexedLabel")

  26.     model = rf.fit(train)
  27.     predictionAndLabels = model.transform(test).select("prediction", "indexedLabel") \
  28.         .map(lambda x: (x.prediction, x.indexedLabel))

  29.     metrics = RegressionMetrics(predictionAndLabels)
  30.     print("rmse %.3f" % metrics.rootMeanSquaredError)
  31.     print("r2 %.3f" % metrics.r2)
  32.     print("mae %.3f" % metrics.meanAbsoluteError)


  33. if __name__ == "__main__":
  34.     if len(sys.argv) > 1:
  35.         print("Usage: gradient_boosted_trees", file=sys.stderr)
  36.         exit(1)
  37.     sc = SparkContext(appName="PythonGBTExample")
  38.     sqlContext = SQLContext(sc)

  39.     # Load the data stored in LIBSVM format as a DataFrame.
  40.     df = sqlContext.read.format("libsvm").load("data/mllib/sample_libsvm_data.txt")

  41.     # Map labels into an indexed column of labels in [0, numLabels)
  42.     stringIndexer = StringIndexer(inputCol="label", outputCol="indexedLabel")
  43.     si_model = stringIndexer.fit(df)
  44.     td = si_model.transform(df)
  45.     [train, test] = td.randomSplit([0.7, 0.3])
  46.     testClassification(train, test)
  47.     testRegression(train, test)
  48.     sc.stop()
复制代码


二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Case study gradient Boosted python cation example simple future import

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-6-29 02:26