0

我刚刚安装了 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。我的问题,如何查看错误日志以及如何修复它?

4

1 回答 1

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" 我曾经因为文件路径错误而报错,你可以检查一下!

于 2012-12-07T05:35:41.083 回答