summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-11-03 00:38:04 +0100
committerPatrick Simianer <p@simianer.de>2011-11-03 00:38:04 +0100
commit4df1aea9e6edce1c79059d3310d55947be0a302e (patch)
tree8ae86a2c874dd562a37663314439844ec51b837b
parent6e468c95e15db08779681497973b735b12b70df5 (diff)
local hacks
-rwxr-xr-xcompound-split/compound-split.pl2
-rw-r--r--environment/LocalConfig.pm6
-rw-r--r--mira/kbest_mira.cc4
3 files changed, 8 insertions, 4 deletions
diff --git a/compound-split/compound-split.pl b/compound-split/compound-split.pl
index 62259146..807ddb0f 100755
--- a/compound-split/compound-split.pl
+++ b/compound-split/compound-split.pl
@@ -32,7 +32,7 @@ $LANG = lc $LANG;
die "Can't find $CDEC\n" unless -f $CDEC;
die "Can't execute $CDEC\n" unless -x $CDEC;
die "Don't know about language: $LANG\n" unless -d "./$LANG";
-my $CONFIG="cdec-$LANG.ini";
+my $CONFIG="/mnt/proj/developer/simianer/cdec_head/compound-split/cdec-$LANG.ini";
die "Can't find $CONFIG" unless -f $CONFIG;
die "--output must be '1best' or 'plf'\n" unless ($OUTPUT =~ /^(plf|1best)$/);
print STDERR "(Run with --help for options)\n";
diff --git a/environment/LocalConfig.pm b/environment/LocalConfig.pm
index 4e5e0d5f..db83696c 100644
--- a/environment/LocalConfig.pm
+++ b/environment/LocalConfig.pm
@@ -48,10 +48,14 @@ my $CCONFIG = {
'HOST_REGEXP' => qr/^(taipan|tiger).cs.ox.ac.uk$/,
'QSubMemFlag' => '-l pmem=',
},
- 'LOCAL' => {
+ 'LOCALx' => {
'HOST_REGEXP' => qr/local\./,
'QSubMemFlag' => ' ',
},
+ 'LOCAL' => {
+ 'HOST_REGEXP' => qr/coltrane/,
+ 'QSubMemFlag' => ' ',
+ },
};
our $senvironment_name;
diff --git a/mira/kbest_mira.cc b/mira/kbest_mira.cc
index 459a5e6f..811bbd4b 100644
--- a/mira/kbest_mira.cc
+++ b/mira/kbest_mira.cc
@@ -52,7 +52,7 @@ bool InitCommandLine(int argc, char** argv, po::variables_map* conf) {
("reference,r",po::value<vector<string> >(), "[REQD] Reference translation(s) (tokenized text file)")
("mt_metric,m",po::value<string>()->default_value("ibm_bleu"), "Scoring metric (ibm_bleu, nist_bleu, koehn_bleu, ter, combi)")
("max_step_size,C", po::value<double>()->default_value(0.01), "regularization strength (C)")
- ("mt_metric_scale,s", po::value<double>()->default_value(1.0), "Amount to scale MT loss function by")
+ //("mt_metric_scale,s", po::value<double>()->default_value(1.0), "Amount to scale MT loss function by")
("k_best_size,k", po::value<int>()->default_value(250), "Size of hypothesis list to search for oracles")
("random_seed,S", po::value<uint32_t>(), "Random seed (if not specified, /dev/random will be used)")
("decoder_config,c",po::value<string>(),"Decoder configuration file");
@@ -190,7 +190,7 @@ int main(int argc, char** argv) {
Weights::InitSparseVector(dense_weights, &lambdas);
const double max_step_size = conf["max_step_size"].as<double>();
- const double mt_metric_scale = conf["mt_metric_scale"].as<double>();
+ const double mt_metric_scale = 1.0;//conf["mt_metric_scale"].as<double>();
assert(corpus.size() > 0);
vector<GoodBadOracle> oracles(corpus.size());