Python Tensorflow – ``bitwise.invert()`` 方法详解与代码示例


发布日期 : 2020-12-06 02:37:52 UTC

访问量: 10 次浏览

Python – Tensorflow bitwise.invert() 方法

Tensorflow bitwise.invert() 方法执行反转操作,其结果是将比特反转,如0到1,1到0。

该方法属于比特模块。

语法:
tf.bitwise.invert( a, name=None)

参数

  • a:这必须是一个张量。它应该是以下类型之一:int8, int16, int32, int64, uint8, uint16, uint32, uint64。
  • name: 这是一个可选的参数,这是操作的名称。

返回:
它返回一个具有与a相同类型的张量。

让我们借助几个例子来看看这个概念。

示例 1:

import tensorflow as tf 

# A constant a 
a = tf.constant(6, dtype = tf.int32)  

# Applying the invert function 
# storing the result in 'c' 
c = tf.bitwise.invert(a) 

# Initiating a Tensorflow session 
with tf.Session() as sess:
    print("Input 1", a)
    print(sess.run(a))
    print("Output: ", c)
    print(sess.run(c))

输出:

Input 1 Tensor("Const_40:0", shape=(), dtype=int32)
6
Output: Tensor("Invert_4:0", shape=(), dtype=int32)
-7

示例 2:

import tensorflow as tf 

# A constant a 
a = tf.constant([1, 4, 7], dtype = tf.int32)  

# Applying the invert function 
# storing the result in 'c' 
c = tf.bitwise.invert(a) 

# Initiating a Tensorflow session 
with tf.Session() as sess:
    print("Input 1", a)
    print(sess.run(a))
    print("Output: ", c)
    print(sess.run(c))

输出:

Input 1 Tensor("Const_39:0", shape=(3, ), dtype=int32)
[1 4 7]
Output: Tensor("Invert_3:0", shape=(3, ), dtype=int32)
[-2 -5 -8]