summaryrefslogtreecommitdiff
path: root/python/cdec/sa/features.py
diff options
context:
space:
mode:
authorMichael Denkowski <mdenkows@cs.cmu.edu>2014-02-26 12:15:02 -0800
committerMichael Denkowski <mdenkows@cs.cmu.edu>2014-02-26 12:15:02 -0800
commit75fc827d0f6364c4e69f949abcbaf858f6735193 (patch)
tree10cca0c435d74fd36406acda5184716f526862a2 /python/cdec/sa/features.py
parent73bc12bb80316362c3ba0c5a745bfc9591f88c55 (diff)
Comments
Diffstat (limited to 'python/cdec/sa/features.py')
-rw-r--r--python/cdec/sa/features.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/cdec/sa/features.py b/python/cdec/sa/features.py
index f5cbdb8d..dcc60401 100644
--- a/python/cdec/sa/features.py
+++ b/python/cdec/sa/features.py
@@ -147,6 +147,7 @@ def CountExceptLM(vocab):
return CountExceptLM
def CountExceptLex(ttable):
- def CountExceptLex(ctx): # Word count in online data but NOT original bitext
+ def CountExceptLex(ctx): # Word count in online data but NOT aligned in original bitext
+ # TODO: Check that online data actually contains aligned word when rulefactory TODO is addressed.
return sum(1 for e in ctx.ephrase.words if not ttable.contains_e_word(e))
return CountExceptLex