当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.keras.losses.categorical_hinge用法及代码示例


计算 y_truey_pred 之间的分类铰链损失。

用法

tf.keras.losses.categorical_hinge(
    y_true, y_pred
)

参数

  • y_true 基本事实值。 y_true 值应为 {-1, +1}{0, 1}(即 one-hot-encoded 张量)。
  • y_pred 预测值。

返回

  • 分类铰链损失值。

loss = maximum(neg - pos + 1, 0) 其中neg=maximum((1-y_true)*y_pred) and pos=sum(y_true*y_pred)

单机使用:

y_true = np.random.randint(0, 3, size=(2,))
y_true = tf.keras.utils.to_categorical(y_true, num_classes=3)
y_pred = np.random.random(size=(2, 3))
loss = tf.keras.losses.categorical_hinge(y_true, y_pred)
assert loss.shape == (2,)
pos = np.sum(y_true * y_pred, axis=-1)
neg = np.amax((1. - y_true) * y_pred, axis=-1)
assert np.array_equal(loss.numpy(), np.maximum(0., neg - pos + 1.))

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.losses.categorical_hinge。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。