summaryrefslogtreecommitdiff
path: root/training/dtrain/dtrain.h
blob: 2636fa897d6582eab3dcea6b6d5f651c8d825c1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef _DTRAIN_H_
#define _DTRAIN_H_

#include <iomanip>
#include <climits>
#include <string.h>

#include <boost/algorithm/string.hpp>
#include <boost/regex.hpp>
#include <boost/algorithm/string/regex.hpp>
#include <boost/program_options.hpp>

#include "decoder.h"
#include "ff_register.h"
#include "sentence_metadata.h"
#include "verbose.h"
#include "viterbi.h"

using namespace std;
namespace po = boost::program_options;

namespace dtrain
{

struct ScoredHyp
{
  vector<WordID>         w;
  SparseVector<weight_t> f;
  weight_t               model, gold;
  size_t                 rank;
};

inline void
PrintWordIDVec(vector<WordID>& v, ostream& os=cerr)
{
  for (size_t i = 0; i < v.size(); i++) {
    os << TD::Convert(v[i]);
    if (i < v.size()-1) os << " ";
  }
}

inline ostream& _np(ostream& out) { return out << resetiosflags(ios::showpos); }
inline ostream& _p(ostream& out)  { return out << setiosflags(ios::showpos); }
inline ostream& _p4(ostream& out) { return out << setprecision(4); }

void
dtrain_init(int argc, char** argv, po::variables_map* conf)
{
  po::options_description ini("Configuration File Options");
  ini.add_options()
    ("bitext,b",          po::value<string>(),                                                  "bitext")
    ("decoder_conf,C",    po::value<string>(),                          "configuration file for decoder")
    ("iterations,T",      po::value<size_t>()->default_value(10),   "number of iterations T (per shard)")
    ("k",                 po::value<size_t>()->default_value(100),                  "size of kbest list")
    ("learning_rate,l",   po::value<weight_t>()->default_value(1.0),                     "learning rate")
    ("l1_reg,r",          po::value<weight_t>()->default_value(0.),         "l1 regularization strength")
    ("margin,m",          po::value<weight_t>()->default_value(0.),       "margin for margin perceptron")
    ("score,s",           po::value<string>()->default_value("nakov"),       "per-sentence BLEU approx.")
    ("N",                 po::value<size_t>()->default_value(4),              "N for BLEU approximation")
    ("input_weights,w",   po::value<string>(),                                      "input weights file")
    ("average,a",         po::value<bool>()->default_value(false),              "output average weights")
    ("keep,K",            po::value<bool>()->default_value(false),  "output a weight file per iteration")
    ("output,o",          po::value<string>()->default_value("-"), "output weights file, '-' for STDOUT")
    ("print_weights,P",   po::value<string>()->default_value("EgivenFCoherent SampleCountF CountEF MaxLexFgivenE MaxLexEgivenF IsSingletonF IsSingletonFE Glue WordPenalty PassThrough LanguageModel LanguageModel_OOV"),
                                                         "list of weights to print after each iteration");
  po::options_description cl("Command Line Options");
  cl.add_options()
    ("conf,c", po::value<string>(), "dtrain configuration file");
  cl.add(ini);
  po::store(parse_command_line(argc, argv, cl), *conf);
  if (conf->count("conf")) {
    ifstream f((*conf)["conf"].as<string>().c_str());
    po::store(po::parse_config_file(f, ini), *conf);
  }
  po::notify(*conf);
  if (!conf->count("decoder_conf")) {
    cerr << "Missing decoder configuration." << endl;
    assert(false);
  }
  if (!conf->count("bitext")) {
    cerr << "No input given." << endl;
    assert(false);
  }
}

} // namespace

#endif