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
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2013-05-15 12:35:28 +0400
committerHieu Hoang <hieuhoang@gmail.com>2013-05-15 12:35:28 +0400
commit7522f3963ccb22b667524f690b3c068d43d615cc (patch)
tree1cd37b18060033c2d85d6bb379da12f98d463306 /scripts/training
parent44da13082f74ebc846269bcf15cad2816c2fbdd5 (diff)
change PhraseDictionaryTreeAdaptor --> PhraseDictionaryBinary
Diffstat (limited to 'scripts/training')
-rwxr-xr-xscripts/training/filter-model-given-input.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/training/filter-model-given-input.pl b/scripts/training/filter-model-given-input.pl
index 586e7efdf..ccc4d318c 100755
--- a/scripts/training/filter-model-given-input.pl
+++ b/scripts/training/filter-model-given-input.pl
@@ -103,7 +103,7 @@ while(my $line = <INI>) {
chomp($line);
my @toks = split(/ /, $line);
if ($line =~ /PhraseDictionaryMemory /
- || $line =~ /PhraseDictionaryTreeAdaptor /
+ || $line =~ /PhraseDictionaryBinary /
|| $line =~ /PhraseDictionaryOnDisk /
|| $line =~ /PhraseDictionarySCFG /
) {
@@ -161,7 +161,7 @@ while(my $line = <INI>) {
@toks = set_value(\@toks, "path", "$new_name.bin$table_flag");
}
else {
- $phrase_table_impl = "PhraseDictionaryTreeAdaptor";
+ $phrase_table_impl = "PhraseDictionaryBinary";
@toks = set_value(\@toks, "path", "$new_name$table_flag");
}
}