tf.keras.metrics.mean_squared_logarithmic_error
Вычисляет среднеквадратическую логарифмическую ошибку между y_true и y_pred.
tf.keras.metrics.mean_squared_logarithmic_error(
y_true, y_pred
)
loss = mean(square(log(y_true + 1) - log(y_pred + 1)), axis=-1)
Использование в автономном режиме:
y_true = np.random.randint(0, 2, size=(2, 3))
y_pred = np.random.random(size=(2, 3))
loss = tf.keras.losses.mean_squared_logarithmic_error(y_true, y_pred)
assert loss.shape == (2,)
y_true = np.maximum(y_true, 1e-7)
y_pred = np.maximum(y_pred, 1e-7)
assert np.allclose(
loss.numpy(),
np.mean(
np.square(np.log(y_true + 1.) - np.log(y_pred + 1.)), axis=-1))
| Аргументы | |
|---|---|
y_true | Значения целевой переменной. Формат = [batch_size, d0, .. dN]. |
y_pred | Предсказанные значения. Формат = [batch_size, d0, .. dN]. |
| Возвращаемое значение | |
|---|---|
Значения средней квадратической логарифмической ошибки. Формат = [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/metrics/mean_squared_logarithmic_error