HomeSort by relevance Sort by last modified time
    Searched refs:_log_unnormalized_prob (Results 1 - 15 of 15) sorted by null

  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
binomial.py 220 return self._log_unnormalized_prob(counts) - self._log_normalization(counts)
238 def _log_unnormalized_prob(self, counts): member in class:Binomial
cauchy.py 175 return self._log_unnormalized_prob(x) - self._log_normalization()
183 def _log_unnormalized_prob(self, x): member in class:Cauchy
gumbel.py 191 return self._log_unnormalized_prob(x) - self._log_normalization()
202 def _log_unnormalized_prob(self, x): member in class:_Gumbel
logistic.py 186 return self._log_unnormalized_prob(x) - self._log_normalization()
203 def _log_unnormalized_prob(self, x): member in class:Logistic
negative_binomial.py 164 return (self._log_unnormalized_prob(x)
167 def _log_unnormalized_prob(self, x): member in class:NegativeBinomial
poisson.py 143 return self._log_unnormalized_prob(x) - self._log_normalization()
162 def _log_unnormalized_prob(self, x): member in class:Poisson
inverse_gamma.py 193 return self._log_unnormalized_prob(x) - self._log_normalization()
207 def _log_unnormalized_prob(self, x): member in class:InverseGamma
kumaraswamy.py 197 def _log_unnormalized_prob(self, x): member in class:Kumaraswamy
  /external/tensorflow/tensorflow/python/ops/distributions/
dirichlet.py 205 return self._log_unnormalized_prob(x) - self._log_normalization()
211 def _log_unnormalized_prob(self, x): member in class:Dirichlet
laplace.py 168 return self._log_unnormalized_prob(x) - self._log_normalization()
184 def _log_unnormalized_prob(self, x): member in class:Laplace
multinomial.py 272 return self._log_unnormalized_prob(counts) - self._log_normalization(counts)
274 def _log_unnormalized_prob(self, counts): member in class:Multinomial
beta.py 228 return self._log_unnormalized_prob(x) - self._log_normalization()
242 def _log_unnormalized_prob(self, x): member in class:Beta
gamma.py 194 return self._log_unnormalized_prob(x) - self._log_normalization()
208 def _log_unnormalized_prob(self, x): member in class:Gamma
normal.py 189 return self._log_unnormalized_prob(x) - self._log_normalization()
206 def _log_unnormalized_prob(self, x): member in class:Normal
student_t.py 238 return self._log_unnormalized_prob(x) - self._log_normalization()
240 def _log_unnormalized_prob(self, x): member in class:StudentT

Completed in 740 milliseconds