Example usage for org.apache.mahout.cf.taste.similarity ItemSimilarity interface-usage

List of usage examples for org.apache.mahout.cf.taste.similarity ItemSimilarity interface-usage

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.similarity ItemSimilarity interface-usage.

Usage

From source file com.anjuke.romar.mahout.similarity.ReadableGenericItemSimilarity.java

public interface ReadableGenericItemSimilarity extends ItemSimilarity, ReadableSimilarity {
}

From source file com.anjuke.romar.mahout.similarity.RomarFileItemSimilarity.java

public class RomarFileItemSimilarity implements ItemSimilarity {
    private static final Logger LOG = LoggerFactory.getLogger(RomarFileItemSimilarity.class);

    private final IteratorBuiler<ItemItemSimilarity> _iteratorBuilder;
    private final File _dataFile;
    private ItemSimilarity _delegate;

From source file com.thegoodlife2015.model.DealContentSimilarity.java

/**
 *
 * @author locnguyen
 */
public class DealContentSimilarity implements ItemSimilarity {

From source file com.yelp.recommend.RestaurantSimilarity.java

/**
 * This class is used to implement the attribute aware collaborative filtering approach.
 * This class performs a tanimoto style similarity calculation considering attributes of a restaurant.
 * @author Vasanth
 *
 */