tf.reduce_sum 은 텐서의 모든 성분의 총합을 계산하는 함수다.
예를 들어 다음과 같은

import tensorflow as tf
A = tf.constant([[[1, 2, 3]], [[4, 5, 6]]])
print("A=", A)
print(tf.reduce_sum(A))
Output:
A= tf.Tensor(
[[[1 2 3]]
[[4 5 6]]], shape=(2, 1, 3), dtype=int32)
tf.Tensor(21, shape=(), dtype=int32)
텐서

print(tf.reduce_sum(A, 0))
print(tf.reduce_sum(A, 2))
Output:
tf.Tensor([[5 7 9]], shape=(1, 3), dtype=int32)
tf.Tensor(
[[ 6]
[15]], shape=(2, 1), dtype=int32)
옵션 keepdims 을 True 로 하면 차원은 유지되는 대신 길이는 1로 축소된다. 텐서

print(tf.reduce_sum(A, 0, keepdims=True))
print(tf.reduce_sum(A, 2, keepdims=True))
Output:
tf.Tensor([[[5 7 9]]], shape=(1, 1, 3), dtype=int32)
tf.Tensor(
[[[ 6]]
[[15]]], shape=(2, 1, 1), dtype=int32)
'프로그래밍 > TensorFlow2' 카테고리의 다른 글
TensorFlow2에서 1차, 2차 편미분 계산 (0) | 2021.07.25 |
---|---|
Model Subclassing 멀티 입력 신경망 모델 구현 방법 (0) | 2021.03.16 |
텐서와 변수 - 3 (0) | 2021.02.11 |
텐서와 변수 - 2 (0) | 2021.02.10 |
텐서와 변수 - 1 (0) | 2021.02.09 |
댓글