diff options
author | Michael Denkowski <michael.j.denkowski@gmail.com> | 2013-01-29 19:15:25 -0500 |
---|---|---|
committer | Michael Denkowski <michael.j.denkowski@gmail.com> | 2013-01-29 19:15:25 -0500 |
commit | 42965462daaa4598cd438147fcfb1794cfa780de (patch) | |
tree | 4fc21cb15d149490797f0bf203e003754680db9e /python | |
parent | b6fb7d74fe72c2a569b8c0448fc66ede6f1cfd67 (diff) |
fcount -> paircount
Diffstat (limited to 'python')
-rw-r--r-- | python/pkg/cdec/sa/features.py | 2 |
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 |