diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-24 23:35:50 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-24 23:35:50 +0000 |
commit | 4cf94b582ea50d2799533c3545eb16845f4795da (patch) | |
tree | 8522882a353821b94af391d669387433e028e742 /decoder/cdec.cc | |
parent | ebbc6f0639383356c23a6b32c9f8c748451d4ba2 (diff) |
prune -LM forest
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@25 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/cdec.cc')
-rw-r--r-- | decoder/cdec.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/decoder/cdec.cc b/decoder/cdec.cc index dbf32cb3..114a248d 100644 --- a/decoder/cdec.cc +++ b/decoder/cdec.cc @@ -79,6 +79,7 @@ void InitCommandLine(int argc, char** argv, po::variables_map* conf) { ("show_expected_length", "Show the expected translation length under the model") ("show_partition,z", "Compute and show the partition (inside score)") ("show_cfg_search_space", "Show the search space as a CFG") + ("prelm_beam_prune", po::value<double>(), "Prune paths from -LM forest before LM rescoring") ("beam_prune", po::value<double>(), "Prune paths from +LM forest") ("lexalign_use_null", "Support source-side null words in lexical translation") ("tagger_tagset,t", po::value<string>(), "(Tagger) file containing tag set") @@ -188,7 +189,7 @@ void MaxTranslationSample(Hypergraph* hg, const int samples, const int k) { // TODO decoder output should probably be moved to another file void DumpKBest(const int sent_id, const Hypergraph& forest, const int k, const bool unique) { -cerr << "In kbest\n"; +cerr << "In kbest\n"; if (unique) { KBest::KBestDerivations<vector<WordID>, ESentenceTraversal, KBest::FilterUnique> kbest(forest, k); for (int i = 0; i < k; ++i) { @@ -407,6 +408,11 @@ int main(int argc, char** argv) { cerr << " -LM tree: " << ViterbiETree(forest) << endl;; cerr << " -LM Viterbi: " << log(vs) << endl; + if (conf.count("prelm_beam_prune")) { + forest.BeamPruneInsideOutside(1.0, false, conf["prelm_beam_prune"].as<double>(), NULL); + cerr << " Pruned -LM forest (paths): " << forest.NumberOfPaths() << endl; + } + bool has_late_models = !late_models.empty(); if (has_late_models) { forest.Reweight(feature_weights); @@ -544,7 +550,7 @@ int main(int argc, char** argv) { acc_obj += (log_z - log_ref_z); } if (feature_expectations) { - const prob_t z = + const prob_t z = InsideOutside<prob_t, EdgeProb, SparseVector<prob_t>, EdgeFeaturesAndProbWeightFunction>(forest, &ref_exp); ref_exp /= z; acc_obj += log(z); |