tf.raw_ops.Range
Stay organized with collections
Save and categorize content based on your preferences.
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]
Args |
start
|
A Tensor . Must be one of the following types: bfloat16 , half , float32 , float64 , int32 , int64 .
0-D (scalar). First entry in the sequence.
|
limit
|
A Tensor . Must have the same type as start .
0-D (scalar). Upper limit of sequence, exclusive.
|
delta
|
A Tensor . Must have the same type as start .
0-D (scalar). Optional. Default is 1. Number that increments start .
|
name
|
A name for the operation (optional).
|
Returns |
A Tensor . Has the same type as start .
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2021-02-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2021-02-18 UTC."],[],[]]