From 9cf584746a55fd724de6af39f2fbe7bff1b79643 Mon Sep 17 00:00:00 2001 From: Michael Denkowski Date: Mon, 24 Feb 2014 23:18:47 -0800 Subject: CountExceptLM and CountExceptLex features for online grammar extraction. --- python/cdec/sa/bilex.pxi | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'python/cdec/sa/bilex.pxi') diff --git a/python/cdec/sa/bilex.pxi b/python/cdec/sa/bilex.pxi index 44bc0ce6..73ba99c1 100644 --- a/python/cdec/sa/bilex.pxi +++ b/python/cdec/sa/bilex.pxi @@ -249,6 +249,14 @@ cdef class BiLex: fclose(f) + def contains_e_word(self, eword): + return (eword in self.eword2id) + + + def contains_f_word(self, fword): + return (fword in self.fword2id) + + def get_e_id(self, eword): if eword not in self.eword2id: e_id = len(self.id2eword) -- cgit v1.2.3