From 345fadba7989ee86d1d3ce2107aa1aa7232ad318 Mon Sep 17 00:00:00 2001 From: puhuk Date: Tue, 31 Aug 2021 23:05:11 +0900 Subject: [PATCH] Update transforms.rst Correct typo --- docs/source/transforms.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/transforms.rst b/docs/source/transforms.rst index 59479f23899..854c869a0de 100644 --- a/docs/source/transforms.rst +++ b/docs/source/transforms.rst @@ -24,7 +24,7 @@ number of channels, ``H`` and ``W`` are image height and width. A batch of Tensor Images is a tensor of ``(B, C, H, W)`` shape, where ``B`` is a number of images in the batch. -The expected range of the values of a tensor image is implicitely defined by +The expected range of the values of a tensor image is implicitly defined by the tensor dtype. Tensor images with a float dtype are expected to have values in ``[0, 1)``. Tensor images with an integer dtype are expected to have values in ``[0, MAX_DTYPE]`` where ``MAX_DTYPE`` is the largest value @@ -35,7 +35,7 @@ images of a given batch, but they will produce different transformations across calls. For reproducible transformations across calls, you may use :ref:`functional transforms `. -The following examples illustate the use of the available transforms: +The following examples illustrate the use of the available transforms: * :ref:`sphx_glr_auto_examples_plot_transforms.py`