(self,
reduction=losses_utils.ReductionV2.AUTO,
name='categorical_hinge')
| 614 | """ |
| 615 | |
| 616 | def __init__(self, |
| 617 | reduction=losses_utils.ReductionV2.AUTO, |
| 618 | name='categorical_hinge'): |
| 619 | super(CategoricalHinge, self).__init__( |
| 620 | categorical_hinge, name=name, reduction=reduction) |
| 621 | |
| 622 | |
| 623 | @keras_export('keras.losses.Poisson') |