Example #1
0
  public static void main(String[] args) throws Exception {

    if (args.length < 3) {
      System.out.println("Usage: InferModel inputFile inferencerFile outputFile <topN>");
      System.exit(0);
    }

    InferModel infermodel = new InferModel();
    infermodel.parseArgs(args);
    // infermodel.test();
    infermodel.doInference();
  }