Example #1
0
    def set_kws(self, *args):
        """
        set_kws(Decoder self, char const * name, char const * keyfile)

        Adds keywords from a file to spotting.

        Associates KWS search with the provided name. The search can be
        activated using ps_set_search().

        See:   ps_set_search 
        """
        return _pocketsphinx.Decoder_set_kws(self, *args)
Example #2
0
 def set_kws(self, name, keyfile):
     """set_kws(Decoder self, char const * name, char const * keyfile)"""
     return _pocketsphinx.Decoder_set_kws(self, name, keyfile)