Package ivory.lsh.projection

Source Code of ivory.lsh.projection.ComputeSignaturesRandom

package ivory.lsh.projection;

import ivory.core.RetrievalEnvironment;
import ivory.core.data.document.WeightedIntDocVector;
import ivory.lsh.data.FloatAsBytesWritable;
import ivory.lsh.data.NBitSignature;
import ivory.lsh.driver.PwsimEnvironment;
import java.io.IOException;
import java.net.URI;
import java.util.List;
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.Text;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.mapred.FileInputFormat;
import org.apache.hadoop.mapred.FileOutputFormat;
import org.apache.hadoop.mapred.JobClient;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.MapReduceBase;
import org.apache.hadoop.mapred.Mapper;
import org.apache.hadoop.mapred.OutputCollector;
import org.apache.hadoop.mapred.Reporter;
import org.apache.hadoop.mapred.SequenceFileInputFormat;
import org.apache.hadoop.mapred.SequenceFileOutputFormat;
import org.apache.hadoop.mapred.lib.IdentityReducer;
import org.apache.hadoop.util.LineReader;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import edu.umd.cloud9.io.SequenceFileUtils;
import edu.umd.cloud9.io.array.ArrayListOfFloatsWritable;
import edu.umd.cloud9.io.map.HMapIFW;
import edu.umd.cloud9.util.PowerTool;
import edu.umd.cloud9.util.map.MapIF;

/**
* A Hadoop task to compute signatures from document vectors.
*
* usage: [index-path] [num-of-bits] [type-of-computation] ([batch-size])
*
* @author ferhanture
*
*
*/
public class ComputeSignaturesRandom extends PowerTool {

  public ComputeSignaturesRandom(Configuration conf) {
    super(conf);
  }

  public static final String[] RequiredParameters = {};
  private static final Logger sLogger = Logger.getLogger(ComputeSignaturesRandom.class);

  static {
    sLogger.setLevel(Level.INFO);
  }

  protected static enum Maps {
    ALL, ONES, ZEROS, EMPTY
  };

  /**
   * Convert int doc vectors into NBitSignature objects using LSH.
   *
   * @author ferhanture
   *
   */
  public static class MyMapper extends MapReduceBase implements
      Mapper<IntWritable, WeightedIntDocVector, IntWritable, NBitSignature> {

    static Path[] localFiles;
    static List<Writable> randomUnitVectors;
    static int D;
    static NBitSignature signature;
    static float[] dotProductThresholds;

    @SuppressWarnings("deprecation")
    public void configure(JobConf job) {
      // sLogger.setLevel(Level.DEBUG);
      D = job.getInt("Ivory.NumOfBits", -1);
      if (D == -1) {
        throw new RuntimeException("Could not read parameters!");
      }

      if (PwsimEnvironment.cluster) {
        try {
          localFiles = DistributedCache.getLocalCacheFiles(job);
          randomUnitVectors = SequenceFileUtils.readValues(localFiles[0], FileSystem.getLocal(job));
        } catch (Exception e) {
          throw new RuntimeException("Error reading random vectors!");
        }
      } else {
        try {
          randomUnitVectors = SequenceFileUtils.readValues(new Path(PwsimEnvironment
              .getFileNameWithPars(job.get("Ivory.IndexPath"), "RandomVectors")
              + "/part-00000"), FileSystem.getLocal(job));
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
      signature = new NBitSignature(D);

      if (localFiles.length > 1) {
        dotProductThresholds = new float[D];
        int i = 0;
        try {
          LineReader reader = new LineReader(FileSystem.getLocal(job).open(localFiles[1]));
          Text t = new Text();
          while (reader.readLine(t) != 0) {
            float val = Float.parseFloat(t.toString());
            sLogger.debug(i + " --> " + val);
            dotProductThresholds[i] = val;
          }
          reader.close();
        } catch (IOException e1) {
        }
        sLogger.info("Dot product thresholds read");
      } else {
        sLogger.info("Dot product thresholds file not specified in option Ivory.DotProdThreshFile");
      }
    }

    static public double dotProduct(HMapIFW docvector, FloatAsBytesWritable vector) {
      float s = 0;

      for (MapIF.Entry f : docvector.entrySet()) {
        int indexOfTerm = f.getKey();
        s += f.getValue() * vector.getAsFloat(indexOfTerm - 1);
      }
      return s;
    }

    static public double dotProduct(HMapIFW docvector, ArrayListOfFloatsWritable vector) {
      float s = 0;

      for (MapIF.Entry f : docvector.entrySet()) {
        int indexOfTerm = f.getKey();
        s += f.getValue() * vector.get(indexOfTerm - 1);
      }
      return s;
    }

    public void map(IntWritable docno, WeightedIntDocVector docvectorIn,
        OutputCollector<IntWritable, NBitSignature> output, Reporter reporter) throws IOException {
      HMapIFW docvector = docvectorIn.getWeightedTerms();
      FloatAsBytesWritable value;

      for (int i = 0; i < randomUnitVectors.size(); i++) {
        value = (FloatAsBytesWritable) randomUnitVectors.get(i);
        double dprod = dotProduct(docvector, value);
        boolean sign = (dprod >= (dotProductThresholds == null ? 0 : dotProductThresholds[i])) ? true
            : false;
        signature.set(i, sign);
      }
      sLogger.debug("Doc vector " + docvector + " mapped to \nBitsSignature: " + docno + "\n"
          + signature);
      output.collect(docno, signature);
    }
  }

  public int runTool() throws Exception {
    Configuration conf = getConf();
    int D = conf.getInt("Ivory.NumOfBits", -1);
    int numBatchFiles = conf.getInt("NumBatch", 0);
    boolean isBatch = (numBatchFiles != 0);
    String dir = conf.get("Ivory.IndexPath");
    if (D < 0 || numBatchFiles < 0) {
      throw new RuntimeException("Parameters not read properly! Quitting...");
    }
    JobConf job = new JobConf(conf, ComputeSignaturesRandom.class);
    FileSystem fs = FileSystem.get(job);

    RetrievalEnvironment re = new RetrievalEnvironment(dir, fs);
    job.setJobName("ComputeSignatures_random_D=" + D + ":" + re.readCollectionName());

    String inputPath = PwsimEnvironment.getFileNameWithPars(dir, "IntDocs");
    String outputPath = PwsimEnvironment.getFileNameWithPars(dir, "SignaturesRandom");
    String randomVectorFile = PwsimEnvironment.getFileNameWithPars(dir, "RandomVectors")
        + "/part-00000";
    DistributedCache.addCacheFile(new URI(randomVectorFile), job);
    String dotProdThreshFile = job.get("Ivory.DotProdThreshFile");
    if (dotProdThreshFile != null) { // if provided by user, use these threshold values instead of
                                     // [0,0,...,0]
      DistributedCache.addCacheFile(new URI(dotProdThreshFile), job);
    }

    int numMappers = 300;
    if (fs.exists(new Path(outputPath))) {
      sLogger.info("Signatures output path already exists! Quitting...");
      return 0;
    }

    sLogger.info("Computing signatures...");
    sLogger.info("Type of computation: Random");
    sLogger.info("Total number of bits: " + D);
    sLogger.info("randomVectorFile: " + randomVectorFile);
    sLogger.info("InputPath: " + inputPath);
    sLogger.info("outputPath: " + outputPath);
    sLogger.info("Batch?: " + isBatch);

    FileInputFormat.setInputPaths(job, new Path(inputPath));
    FileOutputFormat.setOutputPath(job, new Path(outputPath));
    FileOutputFormat.setCompressOutput(job, false);

    job.set("mapred.child.java.opts", "-Xmx2048m");
    job.setInt("mapred.map.max.attempts", 10);
    job.setInt("mapred.reduce.max.attempts", 10);
    job.setInt("mapred.task.timeout", 6000000);

    job.setNumMapTasks(numMappers);
    job.setInputFormat(SequenceFileInputFormat.class);
    job.setMapOutputKeyClass(IntWritable.class);
    job.setMapOutputValueClass(NBitSignature.class);
    job.setOutputKeyClass(IntWritable.class);
    job.setOutputValueClass(NBitSignature.class);
    job.setMapperClass(MyMapper.class);

    job.setOutputFormat(SequenceFileOutputFormat.class);

    if (isBatch) {
      job.setNumReduceTasks(numBatchFiles);
      job.setReducerClass(IdentityReducer.class);
    } else {
      job.setNumReduceTasks(0);
    }
    long startTime = System.currentTimeMillis();
    JobClient.runJob(job);
    System.out.println("Job finished in " + (System.currentTimeMillis() - startTime)
        + " milliseconds");

    return 0;
  }

  @Override
  public String[] getRequiredParameters() {
    return new String[] {};
  }

}
TOP

Related Classes of ivory.lsh.projection.ComputeSignaturesRandom

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.