From 3944c344e4e15bd64e9ee61a34fea7d493458a5c Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Mon, 18 Mar 2019 11:21:00 -0700 Subject: [PATCH] Tiny documentation typo fix for resize_v2. PiperOrigin-RevId: 239024404 --- tensorflow/python/ops/image_ops_impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/ops/image_ops_impl.py b/tensorflow/python/ops/image_ops_impl.py index fc78a3e26f6..5569325c43d 100644 --- a/tensorflow/python/ops/image_ops_impl.py +++ b/tensorflow/python/ops/image_ops_impl.py @@ -1154,8 +1154,8 @@ def resize_images_v2(images, Catmull-Rom kernel. Reasonably good quality and faster than Lanczos3Kernel, particularly when upsampling. * `gaussian`: [Gaussian kernel]( - https://en.wikipedia.org/wiki/Gaussian_filter) with radius 3, - sigma = 1.5 / 3.] + https://en.wikipedia.org/wiki/Gaussian_filter) with radius 3, + sigma = 1.5 / 3.0. * `nearest`: [Nearest neighbor interpolation.]( https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation) 'antialias' has no effect when used with nearest neighbor interpolation.