Esempio n. 1
0
 def __init__(self, approx, beta=1.0):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)
Esempio n. 2
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
Esempio n. 3
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
Esempio 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)
Esempio n. 5
0
 def __init__(self, approx):
     Operator.__init__(self, approx)
     self.input_matrix = tt.matrix('KSD input matrix')
Esempio 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)
Esempio n. 7
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
     self.input_matrix = tt.matrix('KSD input matrix')
Esempio n. 8
0
 def __init__(self, approx, beta=1.):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)