tf.range

tf.range 함수는 주어진 범위와 간격을 갖는 숫자들의 시퀀스를 생성합니다.



예제

import tensorflow as tf

a = tf.range(0, 3)
b = tf.range(1, 5, 2)

print(a)
print(b)
tf.Tensor([0 1 2], shape=(3,), dtype=int32)
tf.Tensor([1 3], shape=(2,), dtype=int32)

tf.range()는 파이썬 range()와 비슷하게, 주어진 범위와 간격을 갖는 숫자들의 시퀀스를 만듭니다.



이전글/다음글

이전글 :
다음글 :