View source on GitHub |
Normalizes a Numpy array.
tf.keras.utils.normalize(
x, axis=-1, order=2
)
Args | |
---|---|
x
|
Numpy array to normalize. |
axis
|
axis along which to normalize. |
order
|
Normalization order (e.g. order=2 for L2 norm).
|
Returns | |
---|---|
A normalized copy of the array. |