Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CreateProbingPT.cpp « misc - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b23427f3089dd336990e08887b0781ff986cfd3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "util/usage.hh"
#include "moses/TranslationModel/ProbingPT/storing.hh"



int main(int argc, char* argv[])
{

  const char * is_reordering = "false";

  if (!(argc == 5 || argc == 4)) {
    // Tell the user how to run the program
    std::cerr << "Provided " << argc << " arguments, needed 4 or 5." << std::endl;
    std::cerr << "Usage: " << argv[0] << " path_to_phrasetable output_dir num_scores is_reordering" << std::endl;
    std::cerr << "is_reordering should be either true or false, but it is currently a stub feature." << std::endl;
    //std::cerr << "Usage: " << argv[0] << " path_to_phrasetable number_of_uniq_lines output_bin_file output_hash_table output_vocab_id" << std::endl;
    return 1;
  }

  if (argc == 5) {
    is_reordering = argv[4];
  }

  createProbingPT(argv[1], argv[2], argv[3], is_reordering);

  util::PrintUsage(std::cout);
  return 0;
}