blob: 639bc98bab50afc0bb8ed67d01573965b1ea834c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LM_BLANK__
#define LM_BLANK__
#include <limits>
namespace lm {
namespace ngram {
const float kBlankProb = -std::numeric_limits<float>::quiet_NaN();
const float kBlankBackoff = std::numeric_limits<float>::infinity();
} // namespace ngram
} // namespace lm
#endif // LM_BLANK__
|