diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-03-05 14:51:04 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-03-05 14:51:04 -0500 |
commit | ce58cb44771a5194b71682d1602abe2fef9e6f13 (patch) | |
tree | cecdac4b062680eb25bfe2377747254edf31a3fa /gi/pf/conditional_pseg.h | |
parent | 0c4ffecf6ccad06b426463d8edc5e0c50935b9c9 (diff) |
support strength=0 PYPs, final notation clean-up
Diffstat (limited to 'gi/pf/conditional_pseg.h')
-rw-r--r-- | gi/pf/conditional_pseg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pf/conditional_pseg.h b/gi/pf/conditional_pseg.h index f9841cbf..86403d8d 100644 --- a/gi/pf/conditional_pseg.h +++ b/gi/pf/conditional_pseg.h @@ -22,7 +22,7 @@ struct MConditionalTranslationModel { void Summary() const { std::cerr << "Number of conditioning contexts: " << r.size() << std::endl; for (RuleModelHash::const_iterator it = r.begin(); it != r.end(); ++it) { - std::cerr << TD::GetString(it->first) << " \t(d=" << it->second.discount() << ",\\alpha = " << it->second.alpha() << ") --------------------------" << std::endl; + std::cerr << TD::GetString(it->first) << " \t(d=" << it->second.discount() << ",s=" << it->second.strength() << ") --------------------------" << std::endl; for (MFCR<TRule>::const_iterator i2 = it->second.begin(); i2 != it->second.end(); ++i2) std::cerr << " " << -1 << '\t' << i2->first << std::endl; } |