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 <hieu@hoang.co.uk>2013-05-01 14:50:29 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-01 14:50:29 +0400
commit3ed17bbedd3be7deeb555033833a5083e840554a (patch)
tree70500688980fc474df2e5645ee9fb308b2090b39 /scripts/training
parent3e64d4b341e7d23c579b5c46368240978533063a (diff)
parent5638aa6a32ce0e6b0f68c0f6d073e40adf19124d (diff)
merge
Diffstat (limited to 'scripts/training')
-rwxr-xr-xscripts/training/mert-moses.pl35
1 files changed, 21 insertions, 14 deletions
diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl
index 5beed637e..2bf4a6c1e 100755
--- a/scripts/training/mert-moses.pl
+++ b/scripts/training/mert-moses.pl
@@ -697,23 +697,30 @@ while (1) {
$uninterpolated_config= $___CONFIG unless $uninterpolated_config;
# Interpolation
- my $interpolated_phrase_table = "naive ";
- $interpolated_phrase_table .= join(" ", @_PROMIX_TABLES_BIN);
- # convert from table,feature ordering to feature,table ordering
- my @transposed_weights;
- for my $feature (0..($num_mixed_phrase_features-1)) {
- my @table_weights;
- for my $table (0..(scalar(@__PROMIX_TABLES)-1)) {
- push @table_weights, $promix_weights[$table * $num_mixed_phrase_features + $feature];
- }
- push @transposed_weights, join ",", @table_weights;
+ my $interpolated_phrase_table = "interpolate";
+ for my $itable (@_PROMIX_TABLES_BIN) {
+ $interpolated_phrase_table .= " 1:$itable";
}
- $interpolated_phrase_table .= " ";
- $interpolated_phrase_table .= join(";",@transposed_weights);
-
+
# Create an ini file for the interpolated phrase table
$interpolated_config ="moses.interpolated.ini";
- substitute_ttable($uninterpolated_config, $interpolated_config, $interpolated_phrase_table, "13");
+ substitute_ttable($uninterpolated_config, $interpolated_config, $interpolated_phrase_table, "97");
+
+ # Append the multimodel weights
+ open(ITABLE,">>$interpolated_config") || die "Failed to append weights to $interpolated_config";
+ print ITABLE "\n";
+ print ITABLE "[weight-t-multimodel]\n";
+ #for my $feature (0..($num_mixed_phrase_features-1)) {
+ # for my $table (0..(scalar(@__PROMIX_TABLES)-1)) {
+ # print ITABLE $promix_weights[$table * $num_mixed_phrase_features + $feature];
+ # print ITABLE "\n";
+ # }
+ #}
+ for my $iweight (@promix_weights) {
+ print ITABLE $iweight . "\n";
+ }
+
+ close ITABLE;
# the decoder should now use the interpolated model
$___CONFIG = "$interpolated_config";