def __init__(self, input, scipy_gmm, phase_train=None):
self.scipy_gmm = scipy_gmm
# This actually checks that we are using the newest version of sklearn as well as the right object type.
assert(type(scipy_gmm) == mixture.GaussianMixture)
super(GMM, self).__init__(input, phase_train=phase_train)
评论列表
文章目录