在mahout in action(mahout实战)中,
第六章代码清单6-3 UserVectorToCooccurrenceMapper这个类有个iterateNonZero()遍历非零元素的方法,
从mahout0.8修正为nonZeroes()
,所以我没找到。。。总是报错~
同时将 Iterator<Vector.Element> it = userVector.get().iterateNonZero();
换为: Iterator<Vector.Element> it = userVector.get().nonZeroes().iterator();
不明白为啥要把一个iterataNonZero换成需要两步操作的nonZeroes,有大牛请指点~~
同学们可以从mahout的官网查找mahout版本与版本之间都做了什么更新~
下面贴一个mahout0.9的java api,版本号可自己换,目前从0.6~0.9都有: