.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "beginner/basics/transforms_tutorial.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. 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``. .. GENERATED FROM PYTHON SOURCE LINES 28-41 .. code-block:: default import torch 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)) ) .. GENERATED FROM PYTHON SOURCE LINES 42-49 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.] .. GENERATED FROM PYTHON SOURCE LINES 51-59 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``. .. GENERATED FROM PYTHON SOURCE LINES 59-63 .. code-block:: default target_transform = Lambda(lambda y: torch.zeros( 10, dtype=torch.float).scatter_(dim=0, index=torch.tensor(y), value=1)) .. GENERATED FROM PYTHON SOURCE LINES 64-66 -------------- .. GENERATED FROM PYTHON SOURCE LINES 68-71 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 sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: transforms_tutorial.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: transforms_tutorial.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_