Package org.apache.mahout.df.mapreduce.inmem

Source Code of org.apache.mahout.df.mapreduce.inmem.InMemBuilder

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.mahout.df.mapreduce.inmem;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.filecache.DistributedCache;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.SequenceFile.Reader;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat;
import org.apache.mahout.df.DFUtils;
import org.apache.mahout.df.DecisionForest;
import org.apache.mahout.df.builder.TreeBuilder;
import org.apache.mahout.df.callback.PredictionCallback;
import org.apache.mahout.df.mapreduce.Builder;
import org.apache.mahout.df.mapreduce.MapredOutput;
import org.apache.mahout.df.node.Node;

/**
* MapReduce implementation where each mapper loads a full copy of the data
* in-memory. The forest trees are splitted across all the mappers
*/
public class InMemBuilder extends Builder {

  public InMemBuilder(TreeBuilder treeBuilder, Path dataPath, Path datasetPath,
      Long seed, Configuration conf) {
    super(treeBuilder, dataPath, datasetPath, seed, conf);
  }

  public InMemBuilder(TreeBuilder treeBuilder, Path dataPath, Path datasetPath) {
    this(treeBuilder, dataPath, datasetPath, null, new Configuration());
  }

  @Override
  protected void configureJob(Job job, int nbTrees, boolean oobEstimate)
      throws IOException {
    Configuration conf = job.getConfiguration();
   
    job.setJarByClass(InMemBuilder.class);
   
    FileOutputFormat.setOutputPath(job, getOutputPath(conf));

    // put the data in the DistributedCache
    DistributedCache.addCacheFile(getDataPath().toUri(), conf);

    job.setOutputKeyClass(IntWritable.class);
    job.setOutputValueClass(MapredOutput.class);

    job.setMapperClass(InMemMapper.class);
    job.setNumReduceTasks(0); // no reducers

    job.setInputFormatClass(InMemInputFormat.class);
    job.setOutputFormatClass(SequenceFileOutputFormat.class);

  }

  @Override
  protected DecisionForest parseOutput(Job job, PredictionCallback callback)
      throws IOException {
    Configuration conf = job.getConfiguration();
   
    Map<Integer, MapredOutput> output = new HashMap<Integer, MapredOutput>();

    Path outputPath = getOutputPath(conf);
    FileSystem fs = outputPath.getFileSystem(conf);

    Path[] outfiles = DFUtils.listOutputFiles(fs, outputPath);

    // import the InMemOutputs
    IntWritable key = new IntWritable();
    MapredOutput value = new MapredOutput();

    for (Path path : outfiles) {
      Reader reader = new Reader(fs, path, conf);

      try {
        while (reader.next(key, value)) {
          output.put(key.get(), value.clone());
        }
      } finally {
        reader.close();
      }
    }

    return processOutput(output, callback);
  }

  /**
   * Process the output, extracting the trees and passing the predictions to the
   * callback
   *
   * @param output
   * @param callback
   * @return
   */
  private static DecisionForest processOutput(Map<Integer, MapredOutput> output,
      PredictionCallback callback) {
    List<Node> trees = new ArrayList<Node>();

    for (Map.Entry<Integer, MapredOutput> entry : output.entrySet()) {
      MapredOutput value = entry.getValue();

      trees.add(value.getTree());

      if (callback != null) {
        int[] predictions = value.getPredictions();
        for (int index = 0; index < predictions.length; index++) {
          callback.prediction(entry.getKey(), index, predictions[index]);
        }
      }
    }

    return new DecisionForest(trees);
  }
}
TOP

Related Classes of org.apache.mahout.df.mapreduce.inmem.InMemBuilder

TOP
Copyright © 2018 www.massapi.com. 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.