Example usage for org.apache.mahout.cf.taste.impl.model.file FileDataModel subclass-usage

List of usage examples for org.apache.mahout.cf.taste.impl.model.file FileDataModel subclass-usage

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.impl.model.file FileDataModel subclass-usage.

Usage

From source file com.msiiplab.recsys.rwr.GroupLensDataModel.java

public final class GroupLensDataModel extends FileDataModel {

    private static final long serialVersionUID = 8983369611832232692L;
    private static final String COLON_DELIMTER = "::";
    private static final Pattern COLON_DELIMITER_PATTERN = Pattern.compile(COLON_DELIMTER);

From source file edu.uci.ics.sourcerer.ml.TasteFileModelWithStringItemIds.java

/**
 * @author <a href="mailto:bajracharya@gmail.com">Sushil Bajracharya</a>
 */
public class TasteFileModelWithStringItemIds extends FileDataModel {

    IDMigrator itemIDMigrator = new MemoryIDMigrator();

From source file norbert.mynemo.dataimport.StringUserDataModel.java

/**
 * This data model loads the data from a file, and accepts user name that are not numbers.
 */
public class StringUserDataModel extends FileDataModel {

    /** Performance configuration value. */

From source file rec.sys.examples.GroupLensDataModel.java

public final class GroupLensDataModel extends FileDataModel {

    private static final String COLON_DELIMTER = "::";
    private static final Pattern COLON_DELIMITER_PATTERN = Pattern.compile(COLON_DELIMTER);

    public GroupLensDataModel() throws IOException {