返回一个与输入具有相同形状和内容的张量。
用法
tf.identity(
input, name=None
)
参数
-
input
Tensor
、Variable
、CompositeTensor
或任何可以使用tf.convert_to_tensor
转换为张量的东西。 -
name
操作的名称(可选)。
返回
-
Tensor
或 CompositeTensor。具有与input
相同的类型和内容。
返回值与原始的 Tensor 不同,但包含相同的值。此操作在同一设备上使用时速度很快。
例如:
a = tf.constant([0.78])
a_identity = tf.identity(a)
a.numpy()
array([0.78], dtype=float32)
a_identity.numpy()
array([0.78], dtype=float32)
在变量上调用tf.identity
将生成一个表示该变量在调用时的值的张量。这相当于调用 <variable>.read_value()
。
a = tf.Variable(5)
a_identity = tf.identity(a)
a.assign_add(1)
<tf.Variable ... shape=() dtype=int32, numpy=6>
a.numpy()
6
a_identity.numpy()
5
相关用法
- Python tf.identity_n用法及代码示例
- Python tf.image.random_brightness用法及代码示例
- Python tf.image.pad_to_bounding_box用法及代码示例
- Python tf.io.gfile.GFile.close用法及代码示例
- Python tf.image.adjust_hue用法及代码示例
- Python tf.image.random_contrast用法及代码示例
- Python tf.image.rot90用法及代码示例
- Python tf.image.random_hue用法及代码示例
- Python tf.io.gfile.join用法及代码示例
- Python tf.io.parse_example用法及代码示例
- Python tf.image.flip_left_right用法及代码示例
- Python tf.image.convert_image_dtype用法及代码示例
- Python tf.image.stateless_random_flip_up_down用法及代码示例
- Python tf.image.random_saturation用法及代码示例
- Python tf.image.extract_glimpse用法及代码示例
- Python tf.image.flip_up_down用法及代码示例
- Python tf.image.crop_to_bounding_box用法及代码示例
- Python tf.image.stateless_random_jpeg_quality用法及代码示例
- Python tf.io.gfile.exists用法及代码示例
- Python tf.image.crop_and_resize用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.identity。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。