本文整理汇总了Python中inception.slim.losses.l2_loss方法的典型用法代码示例。如果您正苦于以下问题:Python losses.l2_loss方法的具体用法?Python losses.l2_loss怎么用?Python losses.l2_loss使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类inception.slim.losses
的用法示例。
在下文中一共展示了losses.l2_loss方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testL2Loss
# 需要导入模块: from inception.slim import losses [as 别名]
# 或者: from inception.slim.losses import l2_loss [as 别名]
def testL2Loss(self):
with self.test_session():
shape = [5, 5, 5]
num_elem = 5 * 5 * 5
weights = tf.constant(1.0, shape=shape)
wd = 0.01
loss = losses.l2_loss(weights, wd)
self.assertEquals(loss.op.name, 'L2Loss/value')
self.assertAlmostEqual(loss.eval(), num_elem * wd / 2, 5)