I want to use tensorflows
tf.nn.l2_normalize(x, dim, epsilon=1e-12, name=None)
method to normalize each channel seperately in a (32x32x3) RGB image.
How do I have to set the
dim
parameter to achieve that?
I want to use tensorflows
tf.nn.l2_normalize(x, dim, epsilon=1e-12, name=None)
method to normalize each channel seperately in a (32x32x3) RGB image.
How do I have to set the
dim
parameter to achieve that?
Quoting the official documentation,
tf.nn.l2_normalize
,Since your channel is the third dimension, you can pass in
dim=2
(since dimensions start from 0).