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 /phrasinator | |
parent | 0c4ffecf6ccad06b426463d8edc5e0c50935b9c9 (diff) |
support strength=0 PYPs, final notation clean-up
Diffstat (limited to 'phrasinator')
-rw-r--r-- | phrasinator/gibbs_train_plm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phrasinator/gibbs_train_plm.cc b/phrasinator/gibbs_train_plm.cc index 54861dcb..3b99e1b6 100644 --- a/phrasinator/gibbs_train_plm.cc +++ b/phrasinator/gibbs_train_plm.cc @@ -252,7 +252,7 @@ struct UniphraseLM { void ResampleHyperparameters(MT19937* rng) { phrases_.resample_hyperparameters(rng); gen_.resample_hyperparameters(rng); - cerr << " d=" << phrases_.discount() << ",a=" << phrases_.alpha(); + cerr << " d=" << phrases_.discount() << ",s=" << phrases_.strength(); } CCRP<vector<int> > phrases_; |