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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lm/weights.hh')
-rw-r--r--lm/weights.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lm/weights.hh b/lm/weights.hh
index da1963d83..f14312753 100644
--- a/lm/weights.hh
+++ b/lm/weights.hh
@@ -1,13 +1,13 @@
#ifndef LM_WEIGHTS_H
#define LM_WEIGHTS_H
-// Weights for n-grams. Probability and possibly a backoff.
+// Weights for n-grams. Probability and possibly a backoff.
namespace lm {
struct Prob {
float prob;
};
-// No inheritance so this will be a POD.
+// No inheritance so this will be a POD.
struct ProbBackoff {
float prob;
float backoff;