Searched refs:random_gamma (Results 1 – 14 of 14) sorted by relevance
/external/tensorflow/tensorflow/python/kernel_tests/random/ |
D | random_gamma_test.py | 45 rng = random_ops.random_gamma( 55 self.evaluate(random_ops.random_gamma( 59 self.evaluate(random_ops.random_gamma( 176 rnd1 = random_ops.random_gamma([24], 2.0, dtype=dtype) 177 rnd2 = random_ops.random_gamma([24], 2.0, dtype=dtype) 184 rnd = random_ops.random_gamma([150], 2.0) 186 rnd = random_ops.random_gamma([150], 2.0, beta=[3.0, 4.0]) 188 rnd = random_ops.random_gamma([150], array_ops.ones([1, 2, 3])) 190 rnd = random_ops.random_gamma([20, 30], array_ops.ones([1, 2, 3])) 192 rnd = random_ops.random_gamma( [all …]
|
D | random_grad_test.py | 78 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 88 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 98 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 128 sample = random_ops.random_gamma( 175 sample = random_ops.random_gamma( 210 sample = random_ops.random_gamma([num_samples], alpha, seed=12345) 241 sample = random_ops.random_gamma([num_samples], alpha, 1.0, seed=12345)
|
D | stateless_random_ops_test.py | 181 functools.partial(wrap, random_ops.random_gamma, alpha, dtype,
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | beta.py | 248 gamma1_sample = random_ops.random_gamma( 253 gamma2_sample = random_ops.random_gamma(
|
D | dirichlet_multinomial.py | 261 math_ops.log(random_ops.random_gamma(
|
D | dirichlet.py | 231 gamma_sample = random_ops.random_gamma(
|
D | gamma.py | 218 return random_ops.random_gamma(
|
D | student_t.py | 255 gamma_sample = random_ops.random_gamma(
|
/external/tensorflow/tensorflow/python/ops/ |
D | random_ops.py | 563 def random_gamma(shape, function 648 gen_random_ops.random_gamma(
|
/external/tensorflow/tensorflow/python/kernel_tests/control_flow/ |
D | while_v2_test.py | 58 def random_gamma(shape): # pylint: disable=invalid-name function 59 return random_ops.random_gamma(shape, 1.0) 63 return random_ops.random_gamma( 1197 ("RandomGamma", random_gamma, [5, 3]),
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | control_flow_ops_test.py | 856 return random_ops.random_gamma([3], alpha=[0.5]) 866 return (random_ops.random_gamma(alpha=alphas_i[0, 0], shape=[]), 867 random_ops.random_gamma(alpha=alphas_i, shape=[]), 868 random_ops.random_gamma(alpha=alphas_i[0, 0], shape=[3]), 869 random_ops.random_gamma(alpha=alphas_i, shape=[3]))
|
/external/tensorflow/tensorflow/python/distribute/ |
D | tpu_strategy_test.py | 404 return random_ops.random_gamma([10], [0.5, 1.5])
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.pbtxt | 1848 name: "random_gamma"
|
/external/tensorflow/ |
D | RELEASE.md | 7971 * Added derivative of `tf.random_gamma` with respect to the alpha parameter. 8810 * Fix `tf.random_gamma` incorrectly handling non-batch, scalar draws.
|