tf.zeros_like()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.zeros_like(tensor, dtype=None, name=None, optimize=True) Creates a tensor with all elements set to zero.

2025-01-10 15:47:30
tf.ones_like()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.ones_like(tensor, dtype=None, name=None, optimize=True) Creates a tensor with all elements set to 1. Given

2025-01-10 15:47:30
tf.random_uniform()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.random_uniform(shape, minval=0, maxval=None, dtype=tf.float32, seed=None, name=None) Outputs random values from a uniform distribution

2025-01-10 15:47:30
tf.multinomial()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.multinomial(logits, num_samples, seed=None, name=None) Draws samples from a multinomial distribution.

2025-01-10 15:47:30
tf.truncated_normal()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.truncated_normal(shape, mean=0.0, stddev=1.0, dtype=tf.float32, seed=None, name=None) Outputs random values from a truncated

2025-01-10 15:47:30
tf.set_random_seed()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.set_random_seed(seed) Sets the graph-level random seed. Operations that rely on a random seed

2025-01-10 15:47:30
tf.random_normal()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.random_normal(shape, mean=0.0, stddev=1.0, dtype=tf.float32, seed=None, name=None) Outputs random values from a normal distribution

2025-01-10 15:47:30
tf.constant()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.constant(value, dtype=None, shape=None, name='Const') Creates a constant tensor. The resulting

2025-01-10 15:47:30
tf.random_crop()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.random_crop(value, size, seed=None, name=None) Randomly crops a tensor to a given size. Slices

2025-01-10 15:47:30
tf.random_gamma()
  • References/Big Data/TensorFlow/TensorFlow Python/Constants, Sequences, and Random Values

tf.random_gamma(shape, alpha, beta=None, dtype=tf.float32, seed=None, name=None) Draws shape samples from each of

2025-01-10 15:47:30