欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

tf.nn.l2_loss函数

程序员文章站 2024-02-29 21:16:46
...

tf.nn.l2_loss函数


tf.nn.l2_loss别名tf.compat.v1.nn.l2_loss

1.功能

tf.nn.l2_loss计算L2损失。
out=ti22out = \frac{\sum{t^2_i }} 2

2.入参

tf.nn.l2_loss(
    t, name=None
)
参数 含义
t 元素类型是half, bfloat16, float32, float64之一的张量.
name 操作的别名(可选).

3.返回值

输出 output = sum(t ** 2) / 2

示例

tf.nn.l2_loss函数

相关标签: TensorFlow