Spec-Zone.ru › TensorFlow 2.4

tf.keras.losses.categorical_hinge

View source on GitHub

Вычисляет категориальную потерю хинджа между y_true и y_pred.

Просмотр псевдонимов

Основные псевдонимы

tf.losses.categorical_hinge

Псевдонимы для миграции

См. Руководство по миграции для получения дополнительной информации.

tf.compat.v1.keras.losses.categorical_hinge

tf.keras.losses.categorical_hinge(
    y_true, 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.))
Аргументы
y_true Значения целевых данных. Ожидается, что значения y_true будут равны 0 или 1.
y_pred Предсказанные значения.
Возвращаемое значение
Значения категориальной потери хинджа.

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/keras/losses/categorical_hinge

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API