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

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

Introduction

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

Prototype

public File getDataFile() 

Source Link

Usage

From source file:nl.jteam.mahout.gettingstarted.datamodel.ResourceDataModelTest.java

License:Open Source License

@Test
public void testConstructor() throws IOException {
    ClassPathResource resource = new ClassPathResource("ratings.dat");
    FileDataModel fileDataModel = new FileDataModel(resource.getFile());

    ResourceDataModel resourceDataModel = new ResourceDataModel(resource);
    assertEquals(fileDataModel.getDataFile(), resourceDataModel.delegate.getDataFile());
}