本文主要是介绍mahout实现基于用户的Mahout推荐程序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/** 这里做的是一个基于用户的Mahout推荐程序 * 这里利用已经准备好的数据。 * */
package byuser;import java.io.File;
import java.io.IOException;
import java.util.List;import org.apache.mahout.cf.taste.common.TasteException;
import org.apache.mahout.cf.taste.impl.model.file.FileDataModel;
import org.apache.mahout.cf.taste.impl.neighborhood.NearestNUserNeighborhood;
import org.apache.mahout.cf.taste.impl.recommender.GenericUserBasedRecommender;
import org.apache.mahout.cf.taste.model.DataModel;
import org.apache.mahout.cf.taste.neighborhood.UserNeighborhood;
import org.apache.mahout.cf.taste.recommender.RecommendedItem;
import org.apache.mahout.cf.taste.recommender.Recommender;
import org.apache.mahout.cf.taste.similarity.UserSimilarity;public class RecommenderIntro {public static void main(String[] args) {// TODO Auto-generated method stubtry {//进行数据的装载DataModel model = new FileDataModel(new File("E:\\ma
这篇关于mahout实现基于用户的Mahout推荐程序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!