(self,
reduction=losses_utils.ReductionV2.AUTO,
name='mean_squared_error')
| 246 | """ |
| 247 | |
| 248 | def __init__(self, |
| 249 | reduction=losses_utils.ReductionV2.AUTO, |
| 250 | name='mean_squared_error'): |
| 251 | super(MeanSquaredError, self).__init__( |
| 252 | mean_squared_error, name=name, reduction=reduction) |
| 253 | |
| 254 | |
| 255 | @keras_export('keras.losses.MeanAbsoluteError') |