summaryrefslogtreecommitdiff
path: root/decoder/ff.cc
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-10-20 01:26:22 +0200
committerPatrick Simianer <p@simianer.de>2011-10-20 01:26:22 +0200
commit77b4d84faf291a7deff116030f9bc0c70e79409a (patch)
tree3934013fbda82a58e1bcfd369f7e8deee87e6a14 /decoder/ff.cc
parent1f54c7b765d4f933f4b631f265933f28e4ae2c93 (diff)
parent0526a4e39280ecd1d70d7c79b292bc5a3e91ca25 (diff)
Merge remote-tracking branch 'upstream/master' into mastermerge
Diffstat (limited to 'decoder/ff.cc')
-rw-r--r--decoder/ff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/ff.cc b/decoder/ff.cc
index 1258bc79..557e0b5f 100644
--- a/decoder/ff.cc
+++ b/decoder/ff.cc
@@ -37,7 +37,7 @@ Features FeatureFunction::single_feature(WordID feat) {
}
Features ModelSet::all_features(std::ostream *warn,bool warn0) {
- return ::all_features(models_,weights_,warn,warn0);
+ //return ::all_features(models_,weights_,warn,warn0);
}
void show_features(Features const& ffs,DenseWeightVector const& weights_,std::ostream &out,std::ostream &warn,bool warn_zero_wt) {
@@ -55,7 +55,7 @@ void show_features(Features const& ffs,DenseWeightVector const& weights_,std::os
void ModelSet::show_features(std::ostream &out,std::ostream &warn,bool warn_zero_wt)
{
// ::show_features(all_features(),weights_,out,warn,warn_zero_wt);
- show_all_features(models_,weights_,out,warn,warn_zero_wt,warn_zero_wt);
+ //show_all_features(models_,weights_,out,warn,warn_zero_wt,warn_zero_wt);
}
// Hiero and Joshua use log_10(e) as the value, so I do to