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