Package edu.uci.jforestsx.input

Examples of edu.uci.jforestsx.input.RankingBinFileReader


public class RankingDatasetLoader {

  public static void load(InputStream in, RankingDataset dataset) throws Exception {
   
    RankingBinFileReader reader = new RankingBinFileReader(in);
    reader.read();
    reader.close();

    dataset.init(reader.getFeatures(), reader.getTargets(),
        reader.getQueryBoundaries(), reader.getMaximumDocsPerQuery());
   
  }
View Full Code Here

TOP

Related Classes of edu.uci.jforestsx.input.RankingBinFileReader

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.