#include "dtrain.h" #include "sample.h" #include "score.h" #include "update.h" using namespace dtrain; int main(int argc, char** argv) { // get configuration po::variables_map conf; if (!dtrain_init(argc, argv, &conf)) return 1; const size_t k = conf["k"].as(); const bool unique_kbest = conf["unique_kbest"].as(); const bool forest_sample = conf["forest_sample"].as(); const string score_name = conf["score"].as(); const weight_t nakov_fix = conf["nakov_fix"].as(); const weight_t chiang_decay = conf["chiang_decay"].as(); const size_t N = conf["N"].as(); const size_t T = conf["iterations"].as(); const weight_t eta = conf["learning_rate"].as(); const weight_t margin = conf["margin"].as(); const weight_t cut = conf["cut"].as(); const bool adjust_cut = conf["adjust"].as(); const bool all_pairs = cut==0; const bool average = conf["average"].as(); const bool pro = conf["pro_sampling"].as(); const bool structured = conf["structured"].as(); const weight_t threshold = conf["threshold"].as(); const size_t max_up = conf["max_pairs"].as(); const weight_t l1_reg = conf["l1_reg"].as(); const bool keep = conf["keep"].as(); const bool noup = conf["disable_learning"].as(); const string output_fn = conf["output"].as(); vector print_weights; boost::split(print_weights, conf["print_weights"].as(), boost::is_any_of(" ")); const string output_updates_fn = conf["output_updates"].as(); const bool output_updates = output_updates_fn!=""; const string output_raw_fn = conf["output_raw"].as(); const bool output_raw = output_raw_fn!=""; // setup decoder register_feature_functions(); SetSilent(true); ReadFile f(conf["decoder_conf"].as()); Decoder decoder(f.stream()); // setup scorer & observer Scorer* scorer; if (score_name == "nakov") { scorer = static_cast(new NakovBleuScorer(N, nakov_fix)); } else if (score_name == "papineni") { scorer = static_cast(new PapineniBleuScorer(N)); } else if (score_name == "lin") { scorer = static_cast(new LinBleuScorer(N)); } else if (score_name == "liang") { scorer = static_cast(new LiangBleuScorer(N)); } else if (score_name == "chiang") { scorer = static_cast(new ChiangBleuScorer(N)); } else if (score_name == "sum") { scorer = static_cast(new SumBleuScorer(N)); } else { assert(false); } HypSampler* observer; if (forest_sample) observer = new KSampler(k, scorer); else if (unique_kbest) observer = new KBestSampler(k, scorer); else observer = new KBestNoFilterSampler(k, scorer); // weights vector& decoder_weights = decoder.CurrentWeightVector(); SparseVector lambdas, w_average; if (conf.count("input_weights")) { Weights::InitFromFile(conf["input_weights"].as(), &decoder_weights); Weights::InitSparseVector(decoder_weights, &lambdas); } // input string input_fn = conf["bitext"].as(); ReadFile input(input_fn); vector buf; // decoder only accepts strings as input vector > buffered_ngrams; // compute ngrams and lengths of references vector > buffered_lengths; // (just once) size_t input_sz = 0; cerr << setprecision(4); // output configuration cerr << "Parameters:" << endl; cerr << setw(25) << "bitext " << "'" << input_fn << "'" << endl; cerr << setw(25) << "k " << k << endl; if (unique_kbest && !forest_sample) cerr << setw(25) << "unique k-best " << unique_kbest << endl; if (forest_sample) cerr << setw(25) << "forest " << forest_sample << endl; if (all_pairs) cerr << setw(25) << "all pairs " << all_pairs << endl; else if (pro) cerr << setw(25) << "PRO " << pro << endl; cerr << setw(25) << "score " << "'" << score_name << "'" << endl; if (score_name == "nakov") cerr << setw(25) << "nakov fix " << nakov_fix << endl; if (score_name == "chiang") cerr << setw(25) << "chiang decay " << chiang_decay << endl; cerr << setw(25) << "N " << N << endl; cerr << setw(25) << "T " << T << endl; cerr << setw(25) << "learning rate " << eta << endl; cerr << setw(25) << "margin " << margin << endl; if (!structured) { cerr << setw(25) << "cut " << round(cut*100) << "%" << endl; cerr << setw(25) << "adjust " << adjust_cut << endl; } else { cerr << setw(25) << "struct. obj " << structured << endl; } if (threshold > 0) cerr << setw(25) << "threshold " << threshold << endl; if (max_up != numeric_limits::max()) cerr << setw(25) << "max up. " << max_up << endl; if (noup) cerr << setw(25) << "no up. " << noup << endl; cerr << setw(25) << "average " << average << endl; cerr << setw(25) << "l1 reg. " << l1_reg << endl; cerr << setw(25) << "decoder conf " << "'" << conf["decoder_conf"].as() << "'" << endl; cerr << setw(25) << "input " << "'" << input_fn << "'" << endl; cerr << setw(25) << "output " << "'" << output_fn << "'" << endl; if (conf.count("input_weights")) { cerr << setw(25) << "weights in " << "'" << conf["input_weights"].as() << "'" << endl; } if (noup) cerr << setw(25) << "no updates!" << endl; cerr << "(1 dot per processed input)" << endl; // meta weight_t best=0., gold_prev=0.; size_t best_iteration = 0; time_t total_time = 0.; // output WriteFile raw_out; if (output_raw) raw_out.Init(output_raw_fn); WriteFile updates_out; if (output_updates) updates_out.Init(output_raw_fn); for (size_t t = 0; t < T; t++) // T iterations { time_t start, end; time(&start); weight_t gold_sum=0., model_sum=0.; size_t i=0, num_up=0, feature_count=0, list_sz=0; cerr << "Iteration #" << t+1 << " of " << T << "." << endl; while(true) { bool next = true; // getting input if (t == 0) { string in; if(!getline(*input, in)) { next = false; } else { vector parts; boost::algorithm::split_regex(parts, in, boost::regex(" \\|\\|\\| ")); buf.push_back(parts[0]); parts.erase(parts.begin()); buffered_ngrams.push_back({}); buffered_lengths.push_back({}); for (auto s: parts) { vector r; vector toks; boost::split(toks, s, boost::is_any_of(" ")); for (auto tok: toks) r.push_back(TD::Convert(tok)); buffered_ngrams.back().emplace_back(ngrams(r, N)); buffered_lengths.back().push_back(r.size()); } } } else { next = i 0 || i > 0) lambdas.init_vector(&decoder_weights); observer->reference_ngrams = &buffered_ngrams[i]; observer->reference_lengths = &buffered_lengths[i]; decoder.Decode(buf[i], observer); vector* sample = &(observer->sample); // stats for 1-best gold_sum += sample->front().gold; model_sum += sample->front().model; feature_count += observer->feature_count; list_sz += observer->effective_size; if (output_raw) output_sample(sample); // update model if (!noup) { SparseVector updates; if (structured) num_up += update_structured(sample, updates, margin/*, output_updates, updates_out.get()*/); // FIXME else if (all_pairs) num_up += updates_all(sample, updates, max_up, threshold/*, output_updates, updates_out.get()*/); // FIXME else if (pro) num_up += updates_pro(sample, updates, cut, max_up, threshold/*, output_updates, updates_out.get()*/); // FIXME else num_up += updates_multipartite(sample, updates, cut, margin, max_up, threshold, adjust_cut/*, output_updates, updates_out.get()*/); // FIXME SparseVector lambdas_copy; if (l1_reg) lambdas_copy = lambdas; lambdas.plus_eq_v_times_s(updates, eta); // update context for Chiang's approx. BLEU if (score_name == "chiang") { for (auto it: *sample) { if (it.rank == 0) { scorer->update_context(it.w, buffered_ngrams[i], buffered_lengths[i], chiang_decay); break; } } } // \ell_1 regularization // NB: regularization is done after each sentence, // not after every single pair! if (l1_reg) { SparseVector::iterator it = lambdas.begin(); for (; it != lambdas.end(); ++it) { weight_t v = it->second; if (!v) continue; if (!lambdas_copy.get(it->first) // new or.. || lambdas_copy.get(it->first)!=v) // updated feature { if (v > 0) { it->second = max(0., v - l1_reg); } else { it->second = min(0., v + l1_reg); } } } } } // noup i++; } // input loop if (t == 0) input_sz = i; // remember size of input (# lines) // update average if (average) w_average += lambdas; // stats weight_t gold_avg = gold_sum/(weight_t)input_sz; cerr << setiosflags(ios::showpos) << "WEIGHTS" << endl; for (auto name: print_weights) cerr << setw(18) << name << " = " << lambdas.get(FD::Convert(name)) << endl; cerr << " ---" << endl; cerr << resetiosflags(ios::showpos) << " 1best avg score: " << gold_avg*100; cerr << setiosflags(ios::showpos) << " (" << (gold_avg-gold_prev)*100 << ")" << endl; cerr << " 1best avg model score: " << model_sum/(weight_t)input_sz << endl; cerr << " avg # updates: "; cerr << resetiosflags(ios::showpos) << num_up/(float)input_sz << endl; cerr << " non-0 feature count: " << lambdas.num_nonzero() << endl; cerr << " avg f count: " << feature_count/(float)list_sz << endl; cerr << " avg list sz: " << list_sz/(float)input_sz << endl; if (gold_avg > best) { best = gold_avg; best_iteration = t; } gold_prev = gold_avg; time (&end); time_t time_diff = difftime(end, start); total_time += time_diff; cerr << "(time " << time_diff/60. << " min, "; cerr << time_diff/input_sz << " s/S)" << endl; if (t+1 != T) cerr << endl; if (keep) { // keep intermediate weights lambdas.init_vector(&decoder_weights); string w_fn = "weights." + boost::lexical_cast(t) + ".gz"; Weights::WriteToFile(w_fn, decoder_weights, true); } } // outer loop // final weights if (average) { w_average /= T; w_average.init_vector(decoder_weights); } else if (!keep) { lambdas.init_vector(decoder_weights); } if (average || !keep) Weights::WriteToFile(output_fn, decoder_weights, true); cerr << endl << "---" << endl << "Best iteration: "; cerr << best_iteration+1 << " [GOLD = " << best*100 << "]." << endl; cerr << "This took " << total_time/60. << " min." << endl; return 0; }