Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of Operation on tf.reduce_sum tensorflow Dimension

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail the example analysis of the operation on the tf.reduce_sum tensorflow dimension. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

There are many dimensional operations in tensorflow, and this example is illustrated by the commonly used tf.reduce_sum. Official api

Reduce_sum (input_tensor, axis=None, keep_dims=False, name=None, reduction_indices=None)

Input_tensor: indicates input

Axis: indicates that the sum operation is performed in that dimension.

Keep_dims: indicates whether to retain the dimension of the original data. False means that the original data will be missing one dimension after execution.

Reduction_indices: for compatibility with older versions, it is no longer in use.

Official examples:

#'x'is [[1,1,1] # [1,1,1]] tf.reduce_sum (x) = > 6tf.reduce_sum (x, 0) = > [2,2,2] tf.reduce_sum (x, 1) = > [3,3] tf.reduce_sum (x, 1, keep_dims=True) = > [3], [3]] tf.reduce_sum (x, [0,1]) = > 6

Examples made by yourself:

.. Axis=1: [[5 7 9] [17 19 21]] 1 "4 2" 5 3 + 6 … . Axis=2: [[6 15] [24 33]] 1, 2, 3, 4, 5, 6... .. This is the end of the article on "sample Analysis of Operations on tf.reduce_sum tensorflow Dimensions". I hope the above content can be helpful to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report