diff --git a/beginner_source/introyt/tensors_deeper_tutorial.py b/beginner_source/introyt/tensors_deeper_tutorial.py index 3ff76258b57..b5f9dc0bc9e 100644 --- a/beginner_source/introyt/tensors_deeper_tutorial.py +++ b/beginner_source/introyt/tensors_deeper_tutorial.py @@ -228,18 +228,7 @@ # integer with the ``.to()`` method. Note that ``c`` contains all the same # values as ``b``, but truncated to integers. # -# Available data types include: -# -# - ``torch.bool`` -# - ``torch.int8`` -# - ``torch.uint8`` -# - ``torch.int16`` -# - ``torch.int32`` -# - ``torch.int64`` -# - ``torch.half`` -# - ``torch.float`` -# - ``torch.double`` -# - ``torch.bfloat`` +# For more information, see the `data types documentation `__. # # Math & Logic with PyTorch Tensors # ---------------------------------