Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TypeDef.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1abf17e3faaa390e6c7fbf6496a6e57dfef86cc (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// $Id$

/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2006 University of Edinburgh

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
***********************************************************************/

#pragma once

#include <list>
#include <limits>

#define PROJECT_NAME		"moses"

#define SENTENCE_START	"<s>"
#define SENTENCE_END		"</s>"
#define UNKNOWN_FACTOR	"UNK"

#define NOT_FOUND 			std::numeric_limits<size_t>::max()
#define MAX_NGRAM_SIZE  20

const size_t DEFAULT_MAX_HYPOSTACK_SIZE = 200;
const size_t ARRAY_SIZE_INCR					= 20; //amount by which a hypostack gets resized when necessary
const float LOWEST_SCORE							= -100.0f;
const float DEFAULT_BEAM_THRESHOLD		= 0.00001f;
const size_t DEFAULT_VERBOSE_LEVEL = 1;

///////////////////////////////////////////////// 
// for those using autoconf/automake
#if HAVE_CONFIG_H
#include "config.h"

#define TRACE_ENABLE 1		// REMOVE after we figure this out
#define N_BEST 1					// REMOVE

#  ifdef HAVE_SRILM
#    define LM_SRI 1
#    undef LM_INTERNAL
#  else
#    undef LM_SRI
#    define LM_INTERNAL 1
#  endif

#  ifdef HAVE_IRSTLM
#    define LM_IRST 1
#    undef LM_INTERNAL
#    undef LM_SRI
#  endif

#endif
///////////////////////////////////////////////// 

class NGramNode;
union LmId {
  unsigned int sri;
  const NGramNode* internal;
  int irst;
  public:
    LmId() {};
    LmId(int i) { irst = i; };
};

// enums. 
// must be 0, 1, 2, ..., unless otherwise stated

// can only be 2 at the moment
const int NUM_LANGUAGES = 2;

enum FactorType
{
	Surface				= 0
	,POS					= 1
	,Stem					= 2
	,Morphology		= 3
};

// count of above
const size_t NUM_FACTORS = 4;

enum FactorDirection
{	
	Input					= 0
	,Output				= 1
};

enum DecodeType
{
	Translate
	,Generate
  ,InsertNullFertilityWord //! an optional step that attempts to insert a few closed-class words to improve LM scores
};

namespace ScoreType {
	enum ScoreType
	{
		PhraseTrans = 0,
		Generation,
		LanguageModelScore,
		Distortion,
		WordPenalty,
		FutureScoreEnum,
		LexicalReordering,
		Total
	};
}

// count of above
const size_t NUM_SCORES = 8;

namespace LexReorderType
{
	enum LexReorderType
		{
			Monotone //TODO what the jiggers do these symbols mean?
			,Msd
			,Forward
			,Backward
			,Bidirectional
			,Fe
			,F
		};
}

enum IOMethod
{
	IOMethodCommandLine
	,IOMethodFile
	,IOMethodMySQL
};

enum LMListType
{
	Initial
	,Other
};

// typedef
class Factor;
typedef const Factor * FactorArray[NUM_FACTORS];

class LanguageModel;
typedef std::list < LanguageModel* >		LMList;