def __init__(self, approx, beta=1.0): Operator.__init__(self, approx) self.beta = pm.floatX(beta)
def __init__(self, approx, temperature=1): Operator.__init__(self, approx) self.temperature = temperature
def __init__(self, approx): if not isinstance(approx, pm.Empirical): raise ValueError( 'approx should be an Empirical approximation, got %r' % approx) Operator.__init__(self, approx)
def __init__(self, approx): Operator.__init__(self, approx) self.input_matrix = tt.matrix('KSD input matrix')
def __init__(self, approx): if not isinstance(approx, pm.Histogram): raise ValueError('approx should be a Histogram, got %r' % approx) Operator.__init__(self, approx)
def __init__(self, approx, temperature=1): Operator.__init__(self, approx) self.temperature = temperature self.input_matrix = tt.matrix('KSD input matrix')
def __init__(self, approx, beta=1.): Operator.__init__(self, approx) self.beta = pm.floatX(beta)