.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_beginner_basics_transforms_tutorial.py: `Learn the Basics `_ || `Quickstart `_ || `Tensors `_ || `Datasets & DataLoaders `_ || **Transforms** || `Build Model `_ || `Autograd `_ || `Optimization `_ || `Save & Load Model `_ Transforms =================== Data does not always come in its final processed form that is required for training machine learning algorithms. We use **transforms** to perform some manipulation of the data and make it suitable for training. All TorchVision datasets have two parameters -``transform`` to modify the features and ``target_transform`` to modify the labels - that accept callables containing the transformation logic. The `torchvision.transforms `_ module offers several commonly-used transforms out of the box. The FashionMNIST features are in PIL Image format, and the labels are integers. For training, we need the features as normalized tensors, and the labels as one-hot encoded tensors. To make these transformations, we use ``ToTensor`` and ``Lambda``. .. code-block:: default from torchvision import datasets from torchvision.transforms import ToTensor, Lambda ds = datasets.FashionMNIST( root="data", train=True, download=True, transform=ToTensor(), target_transform=Lambda(lambda y: torch.zeros(10, dtype=torch.float).scatter_(0, torch.tensor(y), value=1)) ) ToTensor() ------------------------------- `ToTensor `_ converts a PIL image or NumPy ``ndarray`` into a ``FloatTensor``. and scales the image's pixel intensity values in the range [0., 1.] Lambda Transforms ------------------------------- Lambda transforms apply any user-defined lambda function. Here, we define a function to turn the integer into a one-hot encoded tensor. It first creates a zero tensor of size 10 (the number of labels in our dataset) and calls `scatter_ `_ which assigns a ``value=1`` on the index as given by the label ``y``. .. code-block:: default target_transform = Lambda(lambda y: torch.zeros( 10, dtype=torch.float).scatter_(dim=0, index=torch.tensor(y), value=1)) -------------- Further Reading ~~~~~~~~~~~~~~~~~ - `torchvision.transforms API `_ .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_beginner_basics_transforms_tutorial.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: transforms_tutorial.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: transforms_tutorial.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_