我刚刚安装了Hadoop和Mahout,现在我想尝试使用Mahout运行一些示例数据集。
我从这里开始跟踪示例:https://cwiki.apache.org/MAHOUT/recommendationexamples.html 我用这种语法尝试了MovieLens示例:
mvn -q exec:java -Dexec.mainClass="org.apache.mahout.cf.taste.example.grouplens.GroupLensRecommenderEvaluatorRunner" -Dexec.args="-i temp/ml-1m/ml-1m/ratings.dat"
但它没有奏效。而且,它只是说[ERROR] BUILD ERROR。 我的问题是,如何查看错误日志以及如何解决?
答案 0 :(得分:0)
你应该逃避-q
。命令是mvn exec:java -Dexec.mainClass="org.apache.mahout.cf.taste.example.grouplens.GroupLensRecommenderEvaluatorRunner" -Dexec.args="-i temp/ml-1m/ml-1m/ratings.dat"
我曾经有错误,因为文件路径错误,你可以检查一下!