| View source on GitHub | 
Constrains the weights incident to each hidden unit to have unit norm.
Inherits From: Constraint
tf.keras.constraints.UnitNorm(
    axis=0
)
  Also available via the shortcut function tf.keras.constraints.unit_norm.
| Args | |
|---|---|
| axis | integer, axis along which to calculate weight norms. For instance, in a Denselayer 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). | 
    © 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
    https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/keras/constraints/UnitNorm