summaryrefslogtreecommitdiff
path: root/python/pkg/cdec/sa/features.py
diff options
context:
space:
mode:
authorMichael Denkowski <michael.j.denkowski@gmail.com>2013-01-29 19:15:25 -0500
committerMichael Denkowski <michael.j.denkowski@gmail.com>2013-01-29 19:15:25 -0500
commit06d8ec4c0dc2bbf3c8066d3a284a04290ff6a169 (patch)
tree448495249f3915f37cc69f6536c93f35f50ac29c /python/pkg/cdec/sa/features.py
parent028169ef55dfbd973800cdac20dd9bcec6e748e1 (diff)
fcount -> paircount
Diffstat (limited to 'python/pkg/cdec/sa/features.py')
-rw-r--r--python/pkg/cdec/sa/features.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pkg/cdec/sa/features.py b/python/pkg/cdec/sa/features.py
index cbea5dd1..46412cd5 100644
--- a/python/pkg/cdec/sa/features.py
+++ b/python/pkg/cdec/sa/features.py
@@ -137,6 +137,6 @@ def IsFEGreaterThanZero(ctx):
def IsSupportedOnline(ctx): # Occurs in online data?
if ctx.online:
- return (ctx.online.fcount > 0.01)
+ return (ctx.online.paircount > 0.01)
else:
return False \ No newline at end of file