constraint_maxnorm {keras3} | R Documentation |
MaxNorm weight constraint.
Description
Constrains the weights incident to each hidden unit to have a norm less than or equal to a desired value.
Usage
constraint_maxnorm(max_value = 2L, axis = 1L)
Arguments
max_value |
the maximum norm value for the incoming weights. |
axis |
integer, axis along which to calculate weight norms.
For instance, in a |
Value
A Constraint
instance, a callable that can be passed to layer
constructors or used directly by calling it with tensors.
See Also
Other constraints:
Constraint()
constraint_minmaxnorm()
constraint_nonneg()
constraint_unitnorm()