当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Tensorflow logical_and()用法及代码示例


Tensorflow是Google开发的开源机器学习库。它的应用之一是开发深度神经网络。

模块tensorflow.math提供对许多基本逻辑操作的支持。函数tf.logical_and()[别名tf.math.logical_and]为Tensorflow中的逻辑AND函数提供支持。期望输入布尔类型。输入类型为张量,如果张量包含多个元素,则将按元素进行逻辑“与”运算, $x AND y$

用法:tf.logical_and(x, y, name=None) or tf.math.logical_and(x, y, name=None)

参数
x:布尔类型的张量。
y:布尔类型的张量。
name(可选):操作的名称。

返回类型:布尔类型的张量,大小与x或y相同。

代码:

# Importing the Tensorflow library 
import tensorflow as tf 
  
# A constant vector of size 4 
a = tf.constant([True, False, True, False], dtype = tf.bool) 
b = tf.constant([True, False, False, True], dtype = tf.bool) 
  
# Applying the AND function and 
# storing the result in 'c' 
c = tf.logical_and(a, b, name ='logical_and') 
  
# Initiating a Tensorflow session 
with tf.Session() as sess:
    print('Input type:', a) 
    print('Input a:', sess.run(a)) 
    print('Input b:', sess.run(b)) 
    print('Return type:', c) 
    print('Output:', sess.run(c))

输出:

Input type:Tensor("Const:0", shape=(4, ), dtype=bool)
Input a:[ True False  True False]
Input b:[ True False False  True]
Return type:Tensor("logical_and:0", shape=(4, ), dtype=bool)
Output:[ True False False False]



相关用法


注:本文由纯净天空筛选整理自sanskar27jain大神的英文原创作品 Python | Tensorflow logical_and() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。