Class MaxNorm
Inherits From: Constraint
Aliases:
- Class
tf.keras.constraints.MaxNorm - Class
tf.keras.constraints.max_norm
Defined in tensorflow/python/keras/constraints.py.
MaxNorm weight constraint.
Constrains the weights incident to each hidden unit to have a norm less than or equal to a desired value.
Arguments:
m: the maximum norm for the incoming weights.axis: integer, axis along which to calculate weight norms. For instance, in aDenselayer the weight matrix has shape(input_dim, output_dim), setaxisto0to constrain each weight vector of length(input_dim,). In aConv2Dlayer withdata_format="channels_last", the weight tensor has shape(rows, cols, input_depth, output_depth), setaxisto[0, 1, 2]to constrain the weights of each filter tensor of size(rows, cols, input_depth).
__init__
__init__(
max_value=2,
axis=0
)
Initialize self. See help(type(self)) for accurate signature.
Methods
tf.keras.constraints.MaxNorm.__call__
__call__(w)
Call self as a function.
tf.keras.constraints.MaxNorm.get_config
get_config()