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:
authorColin Cherry <Colin.Cherry@nrc-cnrc.gc.ca>2012-06-26 19:40:16 +0400
committerColin Cherry <Colin.Cherry@nrc-cnrc.gc.ca>2012-06-27 00:29:20 +0400
commit32299593fa4699bcc04c0b461ed935b207ab31ad (patch)
treebaf24788cd7051928ebf598bb9d6b7b198d0d138 /mert/kbmira.cpp
parent7cd83567523aba0bea371e32ae4d3282f3bbf34d (diff)
Added debugging info to kbmira.
Diffstat (limited to 'mert/kbmira.cpp')
-rw-r--r--mert/kbmira.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/mert/kbmira.cpp b/mert/kbmira.cpp
index 0723e9975..80a797860 100644
--- a/mert/kbmira.cpp
+++ b/mert/kbmira.cpp
@@ -84,6 +84,7 @@ int main(int argc, char** argv)
bool streaming = false; // Stream all k-best lists?
bool no_shuffle = false; // Don't shuffle, even for in memory version
bool model_bg = false; // Use model for background corpus
+ bool verbose = false; // Verbose updates
// Command-line processing follows pro.cpp
po::options_description desc("Allowed options");
@@ -100,7 +101,8 @@ int main(int argc, char** argv)
("sparse-init,s", po::value<string>(&sparseInitFile), "Weight file for sparse features")
("streaming", po::value(&streaming)->zero_tokens()->default_value(false), "Stream n-best lists to save memory, implies --no-shuffle")
("no-shuffle", po::value(&no_shuffle)->zero_tokens()->default_value(false), "Don't shuffle hypotheses before each epoch")
- ("model-bg", po::value(&model_bg)->zero_tokens()->default_value(false), "Use model instead of hope for BLEU background");
+ ("model-bg", po::value(&model_bg)->zero_tokens()->default_value(false), "Use model instead of hope for BLEU background")
+ ("verbose", po::value(&verbose)->zero_tokens()->default_value(false), "Verbose updates")
;
po::options_description cmdline_options;
@@ -115,6 +117,8 @@ int main(int argc, char** argv)
exit(0);
}
+ cerr << "kbmira with c=" << c << " decay=" << decay << " no_shuffle=" << no_shuffle << endl;
+
if (vm.count("random-seed")) {
cerr << "Initialising random seed to " << seed << endl;
srand(seed);
@@ -233,6 +237,14 @@ int main(int argc, char** argv)
// Loss and update
ValType diff_score = wv.score(diff);
ValType loss = delta - diff_score;
+ if(verbose) {
+ cerr << "Updating sent " << train->cur_id() << endl;
+ cerr << "Wght: " << wv << endl;
+ cerr << "Hope: " << hope << " => " << hopeBleu << " <> " << wv.score(hope) << endl;
+ cerr << "Fear: " << fear << " => " << fearBleu << " <> " << wv.score(fear) << endl;
+ cerr << "Diff: " << diff << " => " << delta << " <> " << diff_score << endl;
+ cerr << endl;
+ }
if(loss > 0) {
ValType eta = min(c, loss / diff.sqrNorm());
wv.update(diff,eta);