Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2660831 + 5069e38 commit 9192700Copy full SHA for 9192700
1 file changed
tensorflow/python/ops/image_ops.py
@@ -583,7 +583,7 @@ def per_image_whitening(image):
583
584
This op computes `(x - mean) / adjusted_stddev`, where `mean` is the average
585
of all values in image, and
586
- `adjusted_stddev = max(stddev, 1.0/srqt(image.NumElements()))`.
+ `adjusted_stddev = max(stddev, 1.0/sqrt(image.NumElements()))`.
587
588
`stddev` is the standard deviation of all values in `image`. It is capped
589
away from zero to protect against division by 0 when handling uniform images.
0 commit comments