summaryrefslogtreecommitdiff
path: root/mira/kbest_mira.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-05-03 22:11:57 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-05-03 22:11:57 -0400
commit6039505d6b44fdfd365ea876b9c2380513bec10d (patch)
tree81e2aa0cc5ee472cd0dc11b5d2325892bc7d515f /mira/kbest_mira.cc
parente671b2a7be4e538f2ba74077ec1d9dfc0bedbf04 (diff)
change default values
Diffstat (limited to 'mira/kbest_mira.cc')
-rw-r--r--mira/kbest_mira.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/mira/kbest_mira.cc b/mira/kbest_mira.cc
index c0c39232..60703273 100644
--- a/mira/kbest_mira.cc
+++ b/mira/kbest_mira.cc
@@ -67,9 +67,9 @@ bool InitCommandLine(int argc, char** argv, po::variables_map* conf) {
("passes,p", po::value<int>()->default_value(15), "Number of passes through the training data")
("reference,r",po::value<vector<string> >(), "[REQD] Reference translation(s) (tokenized text file)")
("mt_metric,m",po::value<string>()->default_value("ibm_bleu"), "Scoring metric (ibm_bleu, nist_bleu, koehn_bleu, ter, combi)")
- ("max_step_size,C", po::value<double>()->default_value(0.001), "maximum step size (C)")
+ ("max_step_size,C", po::value<double>()->default_value(0.01), "regularization strength (C)")
("mt_metric_scale,s", po::value<double>()->default_value(1.0), "Amount to scale MT loss function by")
- ("k_best_size,k", po::value<int>()->default_value(250), "Size of hypothesis list to evaluate")
+ ("k_best_size,k", po::value<int>()->default_value(250), "Size of hypothesis list to search for oracles")
("decoder_config,c",po::value<string>(),"Decoder configuration file");
po::options_description clo("Command line options");
clo.add_options()
@@ -210,7 +210,6 @@ int main(int argc, char** argv) {
double tot_loss = 0;
int dots = 0;
int cur_pass = 0;
- bool converged = false;
vector<double> dense_weights;
SparseVector<double> tot;
tot += lambdas; // initial weights