tf.keras.losses.log_cosh
Логарифм гиперболического косинуса ошибки прогноза.
tf.keras.losses.log_cosh(
y_true, y_pred
)
log(cosh(x)) приблизительно равно (x ** 2) / 2 для малых x и abs(x) - log(2) для больших x. Это означает, что «logcosh» в основном работает как среднеквадратичная ошибка, но не будет так сильно зависеть от случайных сильно неверных прогнозов.
Использование в отдельном модуле:
y_true = np.random.random(size=(2, 3))
y_pred = np.random.random(size=(2, 3))
loss = tf.keras.losses.logcosh(y_true, y_pred)
assert loss.shape == (2,)
x = y_pred - y_true
assert np.allclose(
loss.numpy(),
np.mean(x + np.log(np.exp(-2. * x) + 1.) - tf.math.log(2.), axis=-1),
atol=1e-5)
| Аргументы | |
|---|---|
y_true | Значения целевых данных. форма = [batch_size, d0, .. dN]. |
y_pred | Прогнозируемые значения. форма = [batch_size, d0, .. dN]. |
| Возвращаемое значение | |
|---|---|
Значения ошибки logcosh. форма = [batch_size, d0, .. dN-1]. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/keras/losses/log_cosh