Creates a sequence of numbers.
tf.raw_ops.Range(
start, limit, delta, name=None
)
This operation creates a sequence of numbers that begins at start
and
extends by increments of delta
up to but not including limit
.
For example:
# 'start' is 3
# 'limit' is 18
# 'delta' is 3
tf.range(start, limit, delta) ==> [3, 6, 9, 12, 15]
Returns | |
---|---|
A Tensor . Has the same type as start .
|