blob: 49dc85b755446ce60f9917a6a240e49647f3cced (
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
|
#ifndef _DTRAIN_COMMON_H_
#define _DTRAIN_COMMON_H_
#include <sstream>
#include <iostream>
#include <vector>
#include <cassert>
#include <cmath>
#include <iomanip>
// cdec includes
#include "sentence_metadata.h"
#include "verbose.h"
#include "viterbi.h"
#include "kbest.h"
#include "ff_register.h"
#include "decoder.h"
#include "weights.h"
// boost includes
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
// own headers
#include "score.h"
#define DTRAIN_DEFAULT_K 100 // k for kbest lists
#define DTRAIN_DEFAULT_N 4 // N for ngrams (e.g. BLEU)
#define DTRAIN_DEFAULT_T 1 // iterations
#define DTRAIN_DEFAULT_SCORER "stupid_bleu" // scorer
#define DTRAIN_DOTS 100 // when to display a '.'
#define DTRAIN_TMP_DIR "/var/hadoop/mapred/local" // put this on a SSD?
#define DTRAIN_GRAMMAR_DELIM "########EOS########"
using namespace std;
using namespace dtrain;
namespace po = boost::program_options;
#endif
|