예제 #1
0
 def __init__(self, approx, beta=1.0):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)
예제 #2
0
파일: operators.py 프로젝트: aasensio/pymc3
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
예제 #3
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
예제 #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)
예제 #5
0
 def __init__(self, approx):
     Operator.__init__(self, approx)
     self.input_matrix = tt.matrix('KSD input matrix')
예제 #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)
예제 #7
0
 def __init__(self, approx, temperature=1):
     Operator.__init__(self, approx)
     self.temperature = temperature
     self.input_matrix = tt.matrix('KSD input matrix')
예제 #8
0
 def __init__(self, approx, beta=1.):
     Operator.__init__(self, approx)
     self.beta = pm.floatX(beta)