热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python–tensorflow.math.reduce_max()

Python–tensorflow.math.reduce_max()

Python–tensorflow . math . reduce _ max()

原文:https://www . geesforgeks . org/python-tensorflow-math-reduce _ max/

TensorFlow 是谷歌设计的开源 Python 库,用于开发机器学习模型和深度学习神经网络。

reduce_max() 用于寻找张量维度上元素的最大值。

语法:tensorflow . math . reduce _ max(input _ tensor,axis,keepdims,name)

参数:


  • input_tensor: 是要约简的数值张量。

  • 轴(可选):表示要缩小的尺寸。它的值应该在[-rank(input_tensor),rank(input _ tensor)]范围内。如果没有给出这个值,所有的维度都将减少。

  • 保持(可选):默认值为假。如果设置为真,它将保留长度为 1 的缩小尺寸。

  • 名称(可选):定义操作的名称。

返回:返回张量。

例 1:

Python 3


# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([1, 2, 3, 4], dtype = tf.float64)
# Printing the input tensor
print('Input: ', a)
# Calculating result
res = tf.math.reduce_max(a)
# Printing the result
print('Result: ', res)

输出:

Input: tf.Tensor([1\. 2\. 3\. 4.], shape=(4, ), dtype=float64)
Result: tf.Tensor(4.0, shape=(), dtype=float64)

例 2:

Python 3


# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([[1, 2], [3, 4]], dtype = tf.float64)
# Printing the input tensor
print('Input: ', a)
# Calculating result
res = tf.math.reduce_max(a, axis = 1, keepdims = True)
# Printing the result
print('Result: ', res)

输出:

Input: tf.Tensor(
[[1\. 2.]
[3\. 4.]], shape=(2, 2), dtype=float64)
Result: tf.Tensor(
[[2.]
[4.]], shape=(2, 1), dtype=float64)


推荐阅读
author-avatar
辛博的调调最棒
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有