forked from kaldi-asr/kaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeterministic-fst.h
More file actions
262 lines (206 loc) · 8.67 KB
/
deterministic-fst.h
File metadata and controls
262 lines (206 loc) · 8.67 KB
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// fstext/deterministic-fst.h
// Copyright 2011-2012 Gilles Boulianne Johns Hopkins University (author: Daniel Povey)
// 2014 Telepoint Global Hosting Service, LLC. (Author: David Snyder)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
// MERCHANTABLITY OR NON-INFRINGEMENT.
// See the Apache 2 License for the specific language governing permissions and
// limitations under the License.
//
// This file includes material from the OpenFST Library v1.2.7 available at
// http://www.openfst.org and released under the Apache License Version 2.0.
//
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright 2005-2010 Google, Inc.
// Author: riley@google.com (Michael Riley)
#ifndef KALDI_FSTEXT_DETERMINISTIC_FST_H_
#define KALDI_FSTEXT_DETERMINISTIC_FST_H_
/* This header defines the DeterministicOnDemand interface,
which is an FST with a special interface that allows
only a single arc with a non-epsilon input symbol
out of each state.
*/
#include <algorithm>
#include <string>
#include <utility>
#include <vector>
#include <fst/fstlib.h>
#include <fst/fst-decl.h>
#include "util/stl-utils.h"
namespace fst {
/// \addtogroup deterministic_fst_group "Classes and functions related to on-demand deterministic FST's"
/// @{
/// class DeterministicOnDemandFst is an "FST-like" base-class.
/// It does not actually inherit from any Fst class because its
/// interface is not exactly the same (it doesn't have the
/// GetArc function).
/// It assumes that the FST can have only one arc for any
/// given input symbol, which makes the GetArc function below
/// possible.
/// Note: we don't use "const" in this interface, because
/// it creates problems when we do things like caching,
template<class Arc>
class DeterministicOnDemandFst {
public:
typedef typename Arc::StateId StateId;
typedef typename Arc::Weight Weight;
typedef typename Arc::Label Label;
virtual StateId Start() = 0;
virtual Weight Final(StateId s) = 0;
/// Note: ilabel must not be epsilon.
virtual bool GetArc(StateId s, Label ilabel, Arc *oarc) = 0;
virtual ~DeterministicOnDemandFst() { }
};
/**
This class wraps a conventional Fst, representing a
language model, in the interface for "BackoffDeterministicOnDemandFst".
We expect that backoff arcs in the language model will have the
epsilon label (label 0) on the arcs, and that there will be
no other epsilons in the language model.
We follow the epsilon arcs if a particular arc (or a final-prob)
is not found at the current state.
*/
template<class Arc>
class BackoffDeterministicOnDemandFst: public DeterministicOnDemandFst<Arc> {
public:
typedef typename Arc::Weight Weight;
typedef typename Arc::StateId StateId;
typedef typename Arc::Label Label;
BackoffDeterministicOnDemandFst(const Fst<Arc> &fst_);
StateId Start() { return fst_.Start(); }
Weight Final(StateId s);
bool GetArc(StateId s, Label ilabel, Arc *oarc);
private:
inline StateId GetBackoffState(StateId s, Weight *w);
const Fst<Arc> &fst_;
};
/**
The class UnweightedNgramFst is a DeterministicOnDemandFst whose states encode
an n-gram history. Conceptually, for n-gram order n and k labels, the FST is an
unweighted acceptor with about k^(n-1) states (ignoring end effects). However,
the FST is created on demand and doesn't need the label vocabulary; GetArc
matches on any input label. This class is primarily used by
ComposeDeterministicOnDemand to expand the n-gram history of lattices.
*/
template<class Arc>
class UnweightedNgramFst: public DeterministicOnDemandFst<Arc> {
public:
typedef typename Arc::Weight Weight;
typedef typename Arc::StateId StateId;
typedef typename Arc::Label Label;
UnweightedNgramFst(int n);
StateId Start() { return start_state_; };
Weight Final(StateId s);
bool GetArc(StateId s, Label ilabel, Arc *oarc);
private:
typedef unordered_map<std::vector<Label>,
StateId, kaldi::VectorHasher<Label> > MapType;
// The order of the n-gram.
int n_;
MapType state_map_;
StateId start_state_;
// Map from history-state to pair.
std::vector<std::vector<Label> > state_vec_;
};
template<class Arc>
class ComposeDeterministicOnDemandFst: public DeterministicOnDemandFst<Arc> {
public:
typedef typename Arc::StateId StateId;
typedef typename Arc::Weight Weight;
typedef typename Arc::Label Label;
/// Note: constructor does not "take ownership" of the input fst's. The input
/// fst's should be treated as const, in that their contents, do not change,
/// but they are not const as the DeterministicOnDemandFst's data-access
/// functions are not const, for reasons relating to caching.
ComposeDeterministicOnDemandFst(DeterministicOnDemandFst<Arc> *fst1,
DeterministicOnDemandFst<Arc> *fst2);
virtual StateId Start() { return start_state_; }
virtual Weight Final(StateId s);
virtual bool GetArc(StateId s, Label ilabel, Arc *oarc);
private:
DeterministicOnDemandFst<Arc> *fst1_;
DeterministicOnDemandFst<Arc> *fst2_;
typedef unordered_map<std::pair<StateId, StateId>, StateId, kaldi::PairHasher<StateId> > MapType;
MapType state_map_;
std::vector<std::pair<StateId, StateId> > state_vec_; // maps from
// StateId to pair.
StateId next_state_;
StateId start_state_;
};
template<class Arc>
class CacheDeterministicOnDemandFst: public DeterministicOnDemandFst<Arc> {
public:
typedef typename Arc::StateId StateId;
typedef typename Arc::Weight Weight;
typedef typename Arc::Label Label;
/// We don't take ownership of this pointer. The argument is "really" const.
CacheDeterministicOnDemandFst(DeterministicOnDemandFst<Arc> *fst,
StateId num_cached_arcs = 100000);
virtual StateId Start() { return fst_->Start(); }
/// We don't bother caching the final-probs, just the arcs.
virtual Weight Final(StateId s) { return fst_->Final(s); }
virtual bool GetArc(StateId s, Label ilabel, Arc *oarc);
private:
// Get index for cached arc.
inline size_t GetIndex(StateId src_state, Label ilabel);
DeterministicOnDemandFst<Arc> *fst_;
StateId num_cached_arcs_;
std::vector<std::pair<StateId, Arc> > cached_arcs_;
};
/// This class is for didactic purposes, it does not really do anything.
/// It shows how you would wrap a language model. Note: you should probably
/// have <s> and </s> not be real words in your LM, but <s> correspond somehow
/// to the initial-state of the LM, and </s> be encoded in the final-probs.
template<class Arc>
class LmExampleDeterministicOnDemandFst: public DeterministicOnDemandFst<Arc> {
public:
typedef typename Arc::StateId StateId;
typedef typename Arc::Weight Weight;
typedef typename Arc::Label Label;
LmExampleDeterministicOnDemandFst(void *lm,
Label bos_symbol,
Label eos_symbol);
virtual StateId Start() { return start_state_; }
/// We don't bother caching the final-probs, just the arcs.
virtual Weight Final(StateId s);
virtual bool GetArc(StateId s, Label ilabel, Arc *oarc);
private:
// Get index for cached arc.
inline size_t GetIndex(StateId src_state, Label ilabel);
typedef unordered_map<std::vector<Label>, StateId, kaldi::VectorHasher<Label> > MapType;
void *lm_;
Label bos_symbol_; // beginning of sentence symbol
Label eos_symbol_; // end of sentence symbol.
// This example code does not handle <UNK>; we assume the LM has the same vocab as
// the recognizer.
MapType state_map_;
StateId start_state_;
std::vector<std::vector<Label> > state_vec_; // maps from history-state to pair.
void *lm; // wouldn't really be void.
};
/// @}
} // namespace fst
#include "deterministic-fst-inl.h"
#endif