View source on GitHub |
Computes the mean squared logarithmic error between y_true
& y_pred
.
Inherits From: Loss
tf.keras.losses.MeanSquaredLogarithmicError(
reduction='sum_over_batch_size',
name='mean_squared_logarithmic_error'
)
Formula:
loss = mean(square(log(y_true + 1) - log(y_pred + 1)))
Methods
call
call(
y_true, y_pred
)
from_config
@classmethod
from_config( config )
get_config
get_config()
__call__
__call__(
y_true, y_pred, sample_weight=None
)
Call self as a function.