diff options
author | Michael Denkowski <michael.j.denkowski@gmail.com> | 2012-12-27 23:45:06 -0500 |
---|---|---|
committer | Michael Denkowski <michael.j.denkowski@gmail.com> | 2012-12-27 23:45:06 -0500 |
commit | 07efbe1156be5a4d92f4f76a1a0e44e9ef409a45 (patch) | |
tree | 87a9e7cfc871acb4036f642be4845c599fee639b /python/pkg/cdec/sa/extractor.py | |
parent | 0a4ee9a74cb84595880d815b4d7610664cbd7655 (diff) |
Online phrase extraction speaks rulefactory's language.
Diffstat (limited to 'python/pkg/cdec/sa/extractor.py')
-rw-r--r-- | python/pkg/cdec/sa/extractor.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/pkg/cdec/sa/extractor.py b/python/pkg/cdec/sa/extractor.py index f3a86d9d..62a251a7 100644 --- a/python/pkg/cdec/sa/extractor.py +++ b/python/pkg/cdec/sa/extractor.py @@ -88,4 +88,8 @@ class GrammarExtractor: f_words = cdec.sa.encode_words(sentence.split()) e_words = cdec.sa.encode_words(reference.split()) al = sorted(tuple(int(i) for i in pair.split('-')) for pair in alignment.split()) - self.factory.add_instance(f_words, e_words, al)
\ No newline at end of file + self.factory.add_instance(f_words, e_words, al) + + # Debugging + def dump_online_stats(self): + self.factory.dump_online_stats()
\ No newline at end of file |