Package org.apache.mahout.common

Examples of org.apache.mahout.common.DummyReporter


    }
    mapper.config(canopies);
    List<VectorWritable> points = getPointsWritable(raw);
    // map the data
    for (VectorWritable point : points) {
      mapper.map(new Text(), point, collector, new DummyReporter());
    }
    Map<String,List<VectorWritable>> data = collector.getData();
   
    // reduce the data
    Reducer<Text,VectorWritable,Text,VectorWritable> reducer = new IdentityReducer<Text,VectorWritable>();
View Full Code Here

TOP

Related Classes of org.apache.mahout.common.DummyReporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.