當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tensorflow logical_not()用法及代碼示例


Tensorflow是Google開發的開源機器學習庫。它的應用之一是開發深度神經網絡。

模塊tensorflow.math提供對許多基本邏輯操作的支持。函數tf.logical_not()[別名tf.math.logical_not或者tf.Tensor.__invert__]為Tensorflow中的邏輯NOT函數提供支持。期望輸入布爾類型。輸入類型為張量,如果輸入包含多個元素,則將計算按元素的邏輯非, $ NOT x $

用法:tf.logical_not(x, name=None) or tf.math.logical_not(x, name=None) or tf.Tensor.__invert__(x, name=None)

參數
x:布爾類型的張量。
name(可選):操作的名稱。

返回類型:布爾類型的張量,大小與x相同。

代碼:

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

輸出:

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



相關用法


注:本文由純淨天空篩選整理自sanskar27jain大神的英文原創作品 Python | Tensorflow logical_not() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。