tf.linspace(start, stop, num, name=None) Generates values in an interval. A sequence of num
tf.range(start, limit=None, delta=1, name='range') Creates a sequence of integers. Creates a sequence
tf.zeros(shape, dtype=tf.float32, name=None) Creates a tensor with all elements set to zero. This
tf.fill(dims, value, name=None) Creates a tensor filled with a scalar value. This operation creates
tf.ones(shape, dtype=tf.float32, name=None) Creates a tensor with all elements set to 1. This
tf.random_shuffle(value, seed=None, name=None) Randomly shuffles a tensor along its first dimension. The
Page 2 of 2