diff options
| author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-08 19:30:57 +0000 | 
|---|---|---|
| committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-08 19:30:57 +0000 | 
| commit | 934ed3602c4226b667a2ff6b66228e897e814ccc (patch) | |
| tree | cabef6dd002b9b887e2d93fe84b19a9592e7c0f3 /decoder/cdec.cc | |
| parent | 52a8d49e81c14b6f7ed3afb5bdb50b17391995a8 (diff) | |
warning only on feat dotprod vs. viterbi prob mismatch
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@187 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/cdec.cc')
| -rw-r--r-- | decoder/cdec.cc | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/decoder/cdec.cc b/decoder/cdec.cc index 140fe8e4..54e24792 100644 --- a/decoder/cdec.cc +++ b/decoder/cdec.cc @@ -491,7 +491,7 @@ int main(int argc, char** argv) {      }      const bool show_tree_structure=conf.count("show_tree_structure");      const bool show_features=conf.count("show_features"); -    forest_stats(forest,"  -LM forest",show_tree_structure,show_features); +    forest_stats(forest,"  -LM forest",show_tree_structure,show_features,&feature_weights);      if (conf.count("show_expected_length")) {        const PRPair<double, double> res =          Inside<PRPair<double, double>, @@ -519,7 +519,7 @@ int main(int argc, char** argv) {                      &prelm_forest);        forest.swap(prelm_forest);        forest.Reweight(prelm_feature_weights); -      forest_stats(forest," prelm forest",show_tree_structure,show_features); +      forest_stats(forest," prelm forest",show_tree_structure,show_features,&prelm_feature_weights);      }      maybe_prune(forest,conf,"prelm_beam_prune","prelm_density_prune","-LM",srclen); @@ -538,7 +538,7 @@ int main(int argc, char** argv) {                      &lm_forest);        forest.swap(lm_forest);        forest.Reweight(feature_weights); -      forest_stats(forest,"  +LM forest",show_tree_structure,show_features); +      forest_stats(forest,"  +LM forest",show_tree_structure,show_features,&feature_weights);      }      maybe_prune(forest,conf,"beam_prune","density_prune","+LM",srclen); | 
