/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
conditional_distribution_test.py | 56 def _prob(self, _, arg1, arg2): member in class:ConditionalDistributionTest._GetFakeDistribution._FakeDistribution
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
uniform.py | 168 return math_ops.log(self._prob(x)) 170 def _prob(self, x): member in class:Uniform
|
laplace.py | 170 def _prob(self, x): member in class:Laplace
|
dirichlet.py | 208 def _prob(self, x): member in class:Dirichlet
|
gamma.py | 196 def _prob(self, x): member in class:Gamma
|
normal.py | 191 def _prob(self, x): member in class:Normal
|
distribution.py | 701 return math_ops.log(self._prob(value, **kwargs)) 718 def _prob(self, value): member in class:Distribution 725 return self._prob(value, **kwargs) [all...] |
beta.py | 231 def _prob(self, x): member in class:Beta
|
dirichlet_multinomial.py | 281 def _prob(self, counts): member in class:DirichletMultinomial
|
student_t.py | 251 def _prob(self, x): member in class:StudentT
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
vector_exponential_linear_operator.py | 217 def _prob(self, x): member in class:VectorExponentialLinearOperator 218 return super(VectorExponentialLinearOperator, self)._prob(x)
|
half_normal.py | 149 def _prob(self, x): member in class:HalfNormal
|
deterministic.py | 263 def _prob(self, x): member in class:Deterministic 372 def _prob(self, x): member in class:VectorDeterministic
|
mvn_linear_operator.py | 213 def _prob(self, x): member in class:MultivariateNormalLinearOperator 214 return super(MultivariateNormalLinearOperator, self)._prob(x)
|
vector_laplace_linear_operator.py | 234 def _prob(self, x): member in class:VectorLaplaceLinearOperator 235 return super(VectorLaplaceLinearOperator, self)._prob(x)
|
autoregressive.py | 207 def _prob(self, value): member in class:Autoregressive
|
binomial.py | 223 def _prob(self, counts): member in class:Binomial
|
conditional_transformed_distribution.py | 127 def _prob(self, y, bijector_kwargs=None, distribution_kwargs=None): member in class:ConditionalTransformedDistribution
|
gumbel.py | 193 def _prob(self, x): member in class:_Gumbel
|
inverse_gamma.py | 195 def _prob(self, x): member in class:InverseGamma
|
logistic.py | 188 def _prob(self, x): member in class:Logistic
|
onehot_categorical.py | 206 def _prob(self, x): member in class:OneHotCategorical
|
quantized_distribution.py | 335 def _prob(self, y): member in class:QuantizedDistribution
|
relaxed_onehot_categorical.py | 288 def _prob(self, x): member in class:ExpRelaxedOneHotCategorical
|
wishart.py | 357 def _prob(self, x): member in class:_WishartLinearOperator
|