Method
__init__
(self,
reduction=losses_utils.ReductionV2.AUTO,
name='mean_squared_logarithmic_error')
Source from the content-addressed store, hash-verified
| 333 | """ |
| 334 | |
| 335 | def __init__(self, |
| 336 | reduction=losses_utils.ReductionV2.AUTO, |
| 337 | name='mean_squared_logarithmic_error'): |
| 338 | super(MeanSquaredLogarithmicError, self).__init__( |
| 339 | mean_squared_logarithmic_error, name=name, reduction=reduction) |
| 340 | |
| 341 | |
| 342 | @keras_export('keras.losses.BinaryCrossentropy') |
Callers
nothing calls this directly
Tested by
no test coverage detected