diff options
author | Chris Dyer <redpony@gmail.com> | 2014-01-28 15:49:05 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2014-01-28 15:49:05 -0500 |
commit | fe9b2b6aa3afe2f7baa9e049693fb37610228b54 (patch) | |
tree | 7d34f606084cd78ef4c12ba582ae78a26ca2484b /training/mira | |
parent | 3e22fcc3569a2855f691be4e3ee81f644b926c04 (diff) |
useful debugging
Diffstat (limited to 'training/mira')
-rw-r--r-- | training/mira/kbest_cut_mira.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/training/mira/kbest_cut_mira.cc b/training/mira/kbest_cut_mira.cc index e0b6eecb..e075bed3 100644 --- a/training/mira/kbest_cut_mira.cc +++ b/training/mira/kbest_cut_mira.cc @@ -933,7 +933,8 @@ int main(int argc, char** argv) { //reload weights based on update dense_weights.clear(); lambdas.init_vector(&dense_weights); - ShowLargestFeatures(dense_weights); + if (dense_weights.size() < 500) + ShowLargestFeatures(dense_weights); dense_w_local = dense_weights; iter++; @@ -1000,7 +1001,7 @@ int main(int argc, char** argv) { if (!stream) { int node_id = rng->next() * 100000; cerr << " Writing weights to " << node_id << endl; - Weights::ShowLargestFeatures(dense_weights); + //Weights::ShowLargestFeatures(dense_weights); dots = 0; ostringstream os; os << weights_dir << "/weights.mira-pass" << (cur_pass < 10 ? "0" : "") << cur_pass << "." << node_id << ".gz"; |