Exemplo n.º 1
0
 def __init__(self, approx, beta=1.0):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)
Exemplo n.º 2
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
Exemplo n.º 3
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
Exemplo n.º 4
0
 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)
Exemplo n.º 5
0
 def __init__(self, approx):
     Operator.__init__(self, approx)
     self.input_matrix = tt.matrix('KSD input matrix')
Exemplo n.º 6
0
 def __init__(self, approx):
     if not isinstance(approx, pm.Histogram):
         raise ValueError('approx should be a Histogram, got %r' % approx)
     Operator.__init__(self, approx)
Exemplo n.º 7
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
     self.input_matrix = tt.matrix('KSD input matrix')
Exemplo n.º 8
0
 def __init__(self, approx, beta=1.):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)