Esempio n. 1
0
    def trans_add(self, *args):
        """
        trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)

        Add the given transition to the FSG transition matrix.

        Duplicates (i.e., two transitions between the same states, with the
        same word label) are flagged and only the highest prob retained. 
        """
        return _sphinxbase.FsgModel_trans_add(self, *args)
Esempio n. 2
0
 def trans_add(self, src, dst, logp, wid):
     """trans_add(FsgModel self, int src, int dst, int logp, int wid)"""
     return _sphinxbase.FsgModel_trans_add(self, src, dst, logp, wid)
 def trans_add(self, *args):
     """trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"""
     return _sphinxbase.FsgModel_trans_add(self, *args)
Esempio n. 4
0
 def trans_add(self, src, dst, logp, wid):
     r"""trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"""
     return _sphinxbase.FsgModel_trans_add(self, src, dst, logp, wid)