Searched refs:random_gamma (Results 1 – 14 of 14) sorted by relevance
/external/tensorflow/tensorflow/python/kernel_tests/random/ |
D | random_gamma_test.py | 47 rng = random_ops.random_gamma( 57 self.evaluate(random_ops.random_gamma( 61 self.evaluate(random_ops.random_gamma( 188 rnd1 = random_ops.random_gamma([24], 2.0, dtype=dtype) 189 rnd2 = random_ops.random_gamma([24], 2.0, dtype=dtype) 196 rnd = random_ops.random_gamma([150], 2.0) 198 rnd = random_ops.random_gamma([150], 2.0, beta=[3.0, 4.0]) 200 rnd = random_ops.random_gamma([150], array_ops.ones([1, 2, 3])) 202 rnd = random_ops.random_gamma([20, 30], array_ops.ones([1, 2, 3])) 204 rnd = random_ops.random_gamma( [all …]
|
D | random_grad_test.py | 82 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 92 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 102 sample = random_ops.random_gamma(shape, alpha, beta, seed=12345) 132 sample = random_ops.random_gamma( 179 sample = random_ops.random_gamma( 214 sample = random_ops.random_gamma([num_samples], alpha, seed=12345) 245 sample = random_ops.random_gamma([num_samples], alpha, 1.0, seed=12345)
|
D | stateless_random_ops_test.py | 184 functools.partial(wrap, random_ops.random_gamma, alpha, dtype,
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | beta.py | 252 gamma1_sample = random_ops.random_gamma( 257 gamma2_sample = random_ops.random_gamma(
|
D | dirichlet_multinomial.py | 265 math_ops.log(random_ops.random_gamma(
|
D | dirichlet.py | 235 gamma_sample = random_ops.random_gamma(
|
D | gamma.py | 222 return random_ops.random_gamma(
|
D | student_t.py | 259 gamma_sample = random_ops.random_gamma(
|
/external/tensorflow/tensorflow/python/ops/ |
D | random_ops.py | 552 def random_gamma(shape, function 637 gen_random_ops.random_gamma(
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | while_v2_test.py | 59 def random_gamma(shape): # pylint: disable=invalid-name function 60 return random_ops.random_gamma(shape, 1.0) 64 return random_ops.random_gamma( 1182 ("RandomGamma", random_gamma, [5, 3]),
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | control_flow_ops_test.py | 704 return random_ops.random_gamma([3], alpha=[0.5]) 714 return (random_ops.random_gamma(alpha=alphas_i[0, 0], shape=[]), 715 random_ops.random_gamma(alpha=alphas_i, shape=[]), 716 random_ops.random_gamma(alpha=alphas_i[0, 0], shape=[3]), 717 random_ops.random_gamma(alpha=alphas_i, shape=[3]))
|
/external/tensorflow/tensorflow/python/distribute/ |
D | tpu_strategy_test.py | 267 return random_ops.random_gamma([10], [0.5, 1.5])
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.pbtxt | 1844 name: "random_gamma"
|
/external/tensorflow/ |
D | RELEASE.md | 3014 * Added derivative of `tf.random_gamma` with respect to the alpha parameter. 3622 * Fix `tf.random_gamma` incorrectly handling non-batch, scalar draws.
|