Example usage for org.apache.mahout.cf.taste.impl.recommender AllUnknownItemsCandidateItemsStrategy AllUnknownItemsCandidateItemsStrategy

List of usage examples for org.apache.mahout.cf.taste.impl.recommender AllUnknownItemsCandidateItemsStrategy AllUnknownItemsCandidateItemsStrategy

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.impl.recommender AllUnknownItemsCandidateItemsStrategy AllUnknownItemsCandidateItemsStrategy.

Prototype

AllUnknownItemsCandidateItemsStrategy

Source Link

Usage

From source file:recommender.CustomRecommender.java

public CustomRecommender(DataModel dataModel, Factorizer factorizer) throws TasteException {
    this(dataModel, factorizer, new AllUnknownItemsCandidateItemsStrategy(), getDefaultPersistenceStrategy());
}

From source file:recommender.MyRecommender.java

public MyRecommender(DataModel dataModel, Factorizer factorizer) throws TasteException {
    this(dataModel, factorizer, new AllUnknownItemsCandidateItemsStrategy(), getDefaultPersistenceStrategy());
}