View source on GitHub |
Normalizes an array.
tf.keras.utils.normalize(
x, axis=-1, order=2
)
If the input is a NumPy array, a NumPy array will be returned. If it's a backend tensor, a backend tensor will be returned.
Args | |
---|---|
x
|
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. |