返回与输入具有相同形状和内容的张量列表
用法
tf.identity_n(
input, name=None
)
参数
-
input
Tensor
对象的列表。 -
name
操作的名称(可选)。
返回
-
Tensor
对象的列表。具有与input
相同的类型。
张量。
此操作可用于覆盖复杂函数的梯度。例如,假设 y = f(x),我们希望为反向传播应用自定义函数 g,使得 dx = g(dy)。在 Python 中,
with tf.get_default_graph().gradient_override_map(
{'IdentityN':'OverrideGradientWithG'}):
y, _ = identity_n([f(x), x])
@tf.RegisterGradient('OverrideGradientWithG')
def ApplyG(op, dy, _):
return [None, g(dy)] # Do not backprop to f(x).
相关用法
- Python tf.identity用法及代码示例
- 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_n。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。