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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorMarcin Junczys-Dowmunt <junczys@wipo.int>2012-08-23 12:26:22 +0400
committerMarcin Junczys-Dowmunt <junczys@wipo.int>2012-08-23 12:26:22 +0400
commit0e3edfd8eec2371514cb4aff5fa370c132310ab7 (patch)
treec700a58e12196bf144b3d50ece5437e83ad646c2 /misc
parent94b37ddf8facdf41ae96dcad92ab2f971f8d2298 (diff)
Fixes for compact lexical reodering model for other formats than default
Diffstat (limited to 'misc')
-rw-r--r--misc/processLexicalTableMin.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/processLexicalTableMin.cpp b/misc/processLexicalTableMin.cpp
index a29e178af..20183a3b6 100644
--- a/misc/processLexicalTableMin.cpp
+++ b/misc/processLexicalTableMin.cpp
@@ -45,7 +45,6 @@ int main(int argc, char** argv)
std::string inFilePath;
std::string outFilePath("out");
- size_t numScoreComponent = 6;
size_t orderBits = 10;
size_t fingerPrintBits = 16;
bool multipleScoreTrees = true;
@@ -122,7 +121,7 @@ int main(int argc, char** argv)
outFilePath += ".minlexr";
LexicalReorderingTableCreator(
- inFilePath, outFilePath, numScoreComponent,
+ inFilePath, outFilePath,
orderBits, fingerPrintBits,
multipleScoreTrees, quantize
#ifdef WITH_THREADS