当前位置:   article > 正文

【机器学习】spark逻辑回归代码_用spark 开发机器学习 代码

用spark 开发机器学习 代码

目录

1、读取数据

2、特征构造

3、训练

4、总结


使用的测试数据为-不同国家的人通过不同的搜索引擎查找访问网站的数据,数据的表头如下:

代码如下:

1、读取数据

  1. from pyspark.sql import SparkSession
  2. spark=SparkSession.builder.appName('log_reg').getOrCreate()
  3. # 读取测试数据
  4. df=spark.read.csv('Log_Reg_dataset.csv',inferSchema=True,header=True)

查看一下数据的统计信息,略 

  1. from pyspark.sql.functions import *
  2. # 1 - 查看数据情况,检测数据质量和相关的特征。即相对数据有一定的认识,对后续进行逻辑回归训练做准备
  3. # 包括的操作如下。
  4. print('-------------- 查看数据规模,及全景统计 ------------------')
  5. print((df.count(),len(df.columns))) # 查看数据数据规模 - 输出为 (20000,6) 表是有 2万行数据,有6列
  6. df.printSchema() # 查看数据结构
  7. df.columns # 查看列名
  8. df.describe().show() # 全景数据分析统计,会对各列按 平均值,方差,最小值,最大值 , 函数统计 这几个统计量来进行统计。
  9. ## 统计信息,使用API进行调用,使用Spark Sql可以达到相同的效果。
  10. df.groupBy('Country').count().show()
  11. df.groupBy('Platform').count().show()
  12. df.groupBy('Status').count().show()

2、特征构造

类别特征进行转换,将string类型,转为数字类型,

再转为one-hot 送入model。

  1. # 2 - 进行数据转换,主要将类别数据,转换为可通过数值来度量
  2. # 包括对字符串(类型变量)转换为可度量
  3. print('-------------- 进行数据转换 ------------------')
  4. from pyspark.ml.feature import StringIndexer # StringIndexer可以把字符串的列按照出现频率进行排序,出现次数最高的对应的Index为0
  5. ## 2.1 将字符串转换为可度量值
  6. search_engine_indexer = StringIndexer(inputCol="Platform", outputCol="Search_Engine_Num").fit(df) # 返回对应的模型,即StringIndexerModel
  7. df = search_engine_indexer.transform(df) # 输入的dataset进行模型转换,返回经过转换后的dataset
  8. df.show(5,False)

  1. ## 2.2 进行独热编码
  2. from pyspark.ml.feature import OneHotEncoder # OneHotEncoder 它可以实现将分类特征的每个元素转化为一个可以用来计算的值
  3. ## 对使用的搜索引擎独热编码
  4. search_engine_encoder = OneHotEncoder(inputCol="Search_Engine_Num", outputCol="Search_Engine_Vector")
  5. df = search_engine_encoder.transform(df)
  6. df.show(5,False)

df.groupBy('Platform').count().orderBy('count',ascending=False).show(5,False)

统计一下数量

对城市进行one-hot

  1. ## 对城市独热编码
  2. country_indexer = StringIndexer(inputCol="Country", outputCol="Country_Num").fit(df)
  3. df = country_indexer.transform(df)
  4. df.select(['Country','Country_Num']).show(3,False)
  5. country_encoder = OneHotEncoder(inputCol="Country_Num", outputCol="Country_Vector")
  6. df = country_encoder.transform(df)

同上

  1. # 3 - 进行逻辑回归数据训练
  2. print('-------------- 进行逻辑回归数据训练 ------------------')
  3. from pyspark.ml.feature import VectorAssembler # 导入VerctorAssembler 将多个列合并成向量列的特征转换器,即将表中各列用一个类似list表示,输出预测列为单独一列。
  4. ## 3.1 将经过进行量化后的platform,country和原来的Age,Repeat_Visitor ,Web_pages_viewed 构成特征向量
  5. df_assembler = VectorAssembler(inputCols=['Search_Engine_Vector','Country_Vector','Age', 'Repeat_Visitor','Web_pages_viewed'], outputCol="features")
  6. df = df_assembler.transform(df)
  1. ## 查看构建后的数据
  2. df.printSchema()

 

  1. df.select(['features','Status']).show(10,False)
  2. model_df=df.select(['features','Status'])

可以看出,数值型特征直接送入,类别型特征做了一下数据转换。

3、训练

  1. ## 3.2 进行逻辑回归
  2. from pyspark.ml.classification import LogisticRegression # 逻辑回归。该类支持多项逻辑(softmax)和二项逻辑回归
  3. training_df,test_df=model_df.randomSplit([0.75,0.25]) # 划分数据,75%的数据用于训练,25%数据用于验证测试
  4. training_df.groupBy('Status').count().show() # 查看划分后的数据
  5. test_df.groupBy('Status').count().show()

训练LogisticRegression(labelCol='Status').fit(training_df)  

log_reg是model

log_reg=LogisticRegression(labelCol='Status').fit(training_df)                      # 返回LogisticRegressionModel类型模型对象

以下,相当于验证集的作用吧 

  1. # 使用训练好的model:log_reg来预测数据
  2. # 预测的结果是train_results (model output)
  3. # 在测试数据集中评估模型,返回对象为BinaryLogisticRegressionSummary-
  4. # 给定模型的二元逻辑回归结果
  5. train_results=log_reg.evaluate(training_df).predictions
  6. train_results.filter(train_results['Status']==1).filter(train_results['prediction']==1).\
  7. select(['Status','prediction','probability']).show(10,False)
  8. # 查看预测的准确率
  9. print('{}{}'.format('预测准确率:',log_reg.evaluate(training_df).accuracy) )

model处理测试集

  1. test_results = log_reg.evaluate(test_df).predictions # 使用模型训练测试数据
  2. test_results.filter(test_results['Status']==1).filter(test_results['prediction']==1).\
  3. select(['Status','prediction','probability']).show(10,False)

4、总结

  • 主要是关于数值型、类别型特征的处理。送入机器学习model前,这些数据要做什么处理。
  • 数值型的可以直接送,类别型要one-hot。

参考:

https://github.com/Shadow-Hunter-X/pyspark-recipe-zhcn/blob/master/spark-ml/%E9%80%BB%E8%BE%91%E5%9B%9E%E5%BD%92-LogisticRegression.md

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号