Example #1
0
    def get_fsg(self, *args):
        """
        get_fsg(Decoder self, char const * name) -> FsgModel

        Get the finite-state grammar set object for this decoder.

        If FSG decoding is not enabled, this returns NULL. Call
        ps_set_fsgset() to enable it.

        The current FSG set object for this decoder, or NULL if none is
        available. 
        """
        return _pocketsphinx.Decoder_get_fsg(self, *args)
Example #2
0
 def get_fsg(self, name):
     """get_fsg(Decoder self, char const * name) -> FsgModel"""
     return _pocketsphinx.Decoder_get_fsg(self, name)