コード例 #1
0
ファイル: pocketsphinx.py プロジェクト: lwllovewf2010/jarvis
    def set_allphone_file(self, *args):
        """
        set_allphone_file(Decoder self, char const * name, char const * lmfile)

        Adds new search based on phone N-gram language model.

        Convenient method to load N-gram model and create a search.

        See:   ps_set_allphone 
        """
        return _pocketsphinx.Decoder_set_allphone_file(self, *args)
コード例 #2
0
ファイル: pocketsphinx.py プロジェクト: kumarremoa/Goferbot
 def set_allphone_file(self, name, lmfile):
     """set_allphone_file(Decoder self, char const * name, char const * lmfile)"""
     return _pocketsphinx.Decoder_set_allphone_file(self, name, lmfile)