Contents:
from . import mpmatching [docs]class Matcher: def __init__(self, G, trellis): self.G self.trellis [docs] def match(self): path_prob, predecessor = mpmatching.viterbi_search(self.G_interp, self.trellis, "start", "target") return results