Mahout线性回归算法源码分析(1)--实战

转载地址:http://blog.csdn.net/fansy1990/article/details/23766523



版本:mahout0.9

Mahout里面使用逻辑回归(logistic regression)的主要两个类是org.apache.mahout.classifier.sgd.TrainLogistic、org.apache.mahout.classifier.sgd.RunLogistic,一个是建立模型,一个是进行模型评估。

首先是原始数据,格式如下:(可以在https://github.com/dirkweissenborn/mahout-rbmClassifier/blob/master/examples/src/main/resources/donut.csv#L1下载)

[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. "x","y","shape","color","k","k0","xx","xy","yy","a","b","c","bias"  
  2. 0.923307513352484,0.0135197141207755,21,2,4,8,0.852496764213146,0.0124828536260896,0.000182782669907495,0.923406490600458,0.0778750292332978,0.644866125183976,1  
  3. 0.711011884035543,0.909141522599384,22,2,3,9,0.505537899239772,0.64641042683833,0.826538308114327,1.15415605849213,0.953966686673604,0.46035073663368,1  
  4. 0.75118898646906,0.836567111080512,23,2,3,9,0.564284893392414,0.62842000028592,0.699844531341594,1.12433510339845,0.872783737128441,0.419968245447719,1  

进入mahout的bin目录,运行:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ./mahout trainlogistic --input /data/mahout-data/donut.csv --output /data/mahout-output/model2 --target color --categories 2 --predictors x y a b c --types numeric --features 20 --passes 100 --rate 50  

这里各个参数说明如下:

input:输入数据;output:输出模型文件;--target 预测的变量(输入数据要求第一行为变量名称);categories 预测变量的取值个数;predictors参与建模的变量;types 预测变量的类型(number、word、text其中一个,如果全部是一样的话,使用一个就可以);pass训练的时候对输入数据测试的次数(这里也不是很清楚);feature内部随机向量维度(用于建模,好像是这样理解,越大越好,但是时间会长 );rate学习速率(如果输入数据比较大,此值可以设置大点)。

得到下面的输出:

[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Running on hadoop, using /opt/hadoop2/bin/hadoop and HADOOP_CONF_DIR=  
  2. MAHOUT-JOB: /opt/mahout-distribution-0.9/examples/target/mahout-examples-0.9-job.jar  
  3. SLF4J: Class path contains multiple SLF4J bindings.  
  4. SLF4J: Found binding in [jar:file:/opt/hadoop2/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]  
  5. SLF4J: Found binding in [jar:file:/opt/hadoop2/share/hadoop/mapreduce/lib/mahout-core-0.9-job.jar!/org/slf4j/impl/StaticLoggerBinder.class]  
  6. SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.  
  7. SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]  
  8. 20  
  9. color ~   
  10. 7.068*Intercept Term + 0.581*a + -1.369*b + -25.059*c + 0.581*x + 2.319*y  
  11.       Intercept Term 7.06759  
  12.                    a 0.58123  
  13.                    b -1.36893  
  14.                    c -25.05945  
  15.                    x 0.58123  
  16.                    y 2.31879  
  17.     0.000000000     0.000000000     0.000000000     0.000000000     0.000000000    -1.368933989     0.000000000     0.000000000     0.000000000     0.000000000     0.581234210     0.000000000     0.000000000     7.067587159     0.000000000     0.000000000     0.000000000     2.318786209     0.000000000   -25.059452292   
  18. 14/04/11 10:33:18 INFO driver.MahoutDriver: Program took 1758 ms (Minutes: 0.0293)  

我这里有slf jar包的冲突,暂时不理这个。看后面的公式即可(公式变量前的值,每次训练不一定相同),应该是由这个公式算得最后的预测结果的,但是暂时不清楚Intercept是什么。

然后使用模型评估命令(测试数据:https://svn.apache.org/repos/asf/mahout/trunk/examples/src/main/resources/donut-test.csv):

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ./mahout runlogistic --input /data/mahout-data/donut-test.csv --model /data/mahout-output/model2 --scores --auc --confusion  

input就是测试数据;model是模型文件;scores打印预测值和原始值对比;auc打印auc值(评判主要标准,越大越好,最好接近1);confusion打印模糊矩阵;

得到下面的结果:

[plain]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Running on hadoop, using /opt/hadoop2/bin/hadoop and HADOOP_CONF_DIR=  
  2. MAHOUT-JOB: /opt/mahout-distribution-0.9/examples/target/mahout-examples-0.9-job.jar  
  3. SLF4J: Class path contains multiple SLF4J bindings.  
  4. SLF4J: Found binding in [jar:file:/opt/hadoop2/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]  
  5. SLF4J: Found binding in [jar:file:/opt/hadoop2/share/hadoop/mapreduce/lib/mahout-core-0.9-job.jar!/org/slf4j/impl/StaticLoggerBinder.class]  
  6. SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.  
  7. SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]  
  8. "target","model-output","log-likelihood"  
  9. 0,0.009,-0.009241  
  10. 0,0.000,-0.000481  
  11. 1,0.985,-0.015038  
  12. 1,0.991,-0.009407  
  13. 0,0.001,-0.000883  
  14. 1,0.974,-0.026000  
  15. 1,0.823,-0.194875  
  16. 0,0.041,-0.042015  
  17. 0,0.051,-0.052565  
  18. 0,0.613,-0.950008  
  19. 0,0.147,-0.158538  
  20. 1,0.910,-0.094177  
  21. 1,0.252,-1.377220  
  22. 1,0.924,-0.078521  
  23. 1,0.998,-0.001777  
  24. 0,0.023,-0.023756  
  25. 1,0.990,-0.009928  
  26. 0,0.003,-0.003118  
  27. 1,0.961,-0.039284  
  28. 0,0.000,-0.000046  
  29. 0,0.167,-0.183160  
  30. 0,0.049,-0.049822  
  31. 0,0.006,-0.005792  
  32. 0,0.706,-1.222487  
  33. 0,0.000,-0.000421  
  34. 1,0.999,-0.001045  
  35. 1,0.969,-0.031452  
  36. 0,0.034,-0.034088  
  37. 0,0.370,-0.461632  
  38. 0,0.011,-0.011489  
  39. 0,0.465,-0.624971  
  40. 0,0.053,-0.054646  
  41. 0,0.340,-0.414959  
  42. 0,0.053,-0.054123  
  43. 0,0.007,-0.006800  
  44. 0,0.248,-0.285650  
  45. 1,0.482,-0.728835  
  46. 0,0.781,-1.516960  
  47. 0,0.024,-0.023975  
  48. 0,0.022,-0.022281  
  49. AUC = 0.97  
  50. confusion: [[24.0, 2.0], [3.0, 11.0]]  
  51. entropy: [[-0.2, -2.8], [-4.1, -0.1]]  
  52. 14/04/11 10:43:39 INFO driver.MahoutDriver: Program took 414 ms (Minutes: 0.0069)  
可以看到auc=0.97 说明模型还是比较好的;模糊矩阵中说明 有2个应该被分为1的被分为了0,有3个应该是0的结果被分为了1。

本来打算使用上面得到的公式带入测试数据,看能否得到第一行的输出,比如0.009,但是不知道哪个Interceptor值是什么,所以也是没有得到0.009的。大概浏览了下源码,好像要归一化的。具体下次在分析。

总结:

     目前遇到的问题有:1)如何使用上面的公式(Interceptor是什么?);2)如何把这个在hadoop上面运行起来(从上面的结果来看,似乎mahout并没有运行在hadoop上面)。


分享,成长,快乐

转载请注明blog地址:http://blog.csdn.net/fansy1990


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值