Thursday, September 28, 2023
HomeArtificial IntelligenceTwo-Dimensional Tensors in Pytorch - MachineLearningMastery.com

Two-Dimensional Tensors in Pytorch – MachineLearningMastery.com


Final Up to date on November 15, 2022

Two-dimensional tensors are analogous to two-dimensional metrics. Like a two-dimensional metric, a two-dimensional tensor additionally has $n$ variety of rows and columns.

Let’s take a gray-scale picture for instance, which is a two-dimensional matrix of numeric values, generally referred to as pixels. Starting from ‘0’ to ‘255’, every quantity represents a pixel depth worth. Right here, the bottom depth quantity (which is ‘0’) represents black areas within the picture whereas the best depth quantity (which is ‘255’) represents white areas within the picture. Utilizing the PyTorch framework, this two-dimensional picture or matrix will be transformed to a two-dimensional tensor.

Within the earlier put up, we realized about one-dimensional tensors in PyTorch and utilized some helpful tensor operations. On this tutorial, we’ll apply these operations to two-dimensional tensors utilizing the PyTorch library. Particularly, we’ll be taught:

  • Find out how to create two-dimensional tensors in PyTorch and discover their sorts and shapes.
  • About slicing and indexing operations on two-dimensional tensors intimately.
  • To use numerous strategies to tensors akin to, tensor addition, multiplication, and extra.

Let’s get began.

Two-Dimensional Tensors in Pytorch
Image by dylan dolte. Some rights reserved.

Tutorial Overview

This tutorial is split into elements; they’re:

  • Varieties and shapes of two-dimensional tensors
  • Changing two-dimensional tensors into NumPy arrays
  • Changing pandas collection to two-dimensional tensors
  • Indexing and slicing operations on two-dimensional tensors
  • Operations on two-dimensional tensors

Varieties and Shapes of Two-Dimensional Tensors

Let’s first import a couple of obligatory libraries we’ll use on this tutorial.

To test the categories and shapes of the two-dimensional tensors, we’ll use the identical strategies from PyTorch, launched beforehand for one-dimensional tensors. However, ought to it work the identical approach it did for the one-dimensional tensors?

Let’s show by changing a 2D checklist of integers to a 2D tensor object. For instance, we’ll create a 2D checklist and apply torch.tensor() for conversion.

As you possibly can see, the torch.tensor() methodology additionally works properly for the two-dimensional tensors. Now, let’s use form(), dimension(), and ndimension() strategies to return the form, dimension, and dimensions of a tensor object.

Changing Two-Dimensional Tensors to NumPy Arrays

PyTorch permits us to transform a two-dimensional tensor to a NumPy array after which again to a tensor. Let’s learn how.

Changing Pandas Sequence to Two-Dimensional Tensors

Equally, we are able to additionally convert a pandas DataFrame to a tensor. As with the one-dimensional tensors, we’ll use the identical steps for the conversion. Utilizing values attribute we’ll get the NumPy array after which use torch.from_numpy that means that you can convert a pandas DataFrame to a tensor.

Right here is how we’ll do it.

Indexing and Slicing Operations on Two-Dimensional Tensors

For indexing operations, totally different components in a tensor object will be accessed utilizing sq. brackets. You’ll be able to merely put corresponding indices in sq. brackets to entry the specified components in a tensor.

Within the beneath instance, we’ll create a tensor and entry sure components utilizing two totally different strategies. Observe that the index worth ought to all the time be one lower than the place the ingredient is positioned in a two-dimensional tensor.

What if we have to entry two or extra components on the identical time? That’s the place tensor slicing comes into play. Let’s use the earlier instance to entry first two components of the second row and first three components of the third row.

Operations on Two-Dimensional Tensors

Whereas there are lots of operations you possibly can apply on two-dimensional tensors utilizing the PyTorch framework, right here, we’ll introduce you to tensor addition, and scalar and matrix multiplication.

Including Two-Dimensional Tensors

Including two tensors is just like matrix addition. It’s fairly a straight ahead course of as you merely want an addition (+) operator to carry out the operation. Let’s add two tensors within the beneath instance.

Scalar and Matrix Multiplication of Two-Dimensional Tensors

Scalar multiplication in two-dimensional tensors can also be an identical to scalar multiplication in matrices. As an example, by multiplying a tensor with a scalar, say a scalar 4, you’ll be multiplying each ingredient in a tensor by 4.

Coming to the multiplication of the two-dimensional tensors, torch.mm() in PyTorch makes issues simpler for us. Much like the matrix multiplication in linear algebra, variety of columns in tensor object A (i.e. 2×3) should be equal to the variety of rows in tensor object B (i.e. 3×2).

Additional Studying

Developed similtaneously TensorFlow, PyTorch used to have an easier syntax till TensorFlow adopted Keras in its 2.x model. To be taught the fundamentals of PyTorch, you could wish to learn the PyTorch tutorials:

Particularly the fundamentals of PyTorch tensor will be discovered within the Tensor tutorial web page:

There are additionally fairly a couple of books on PyTorch which might be appropriate for rookies. A extra just lately revealed e book needs to be beneficial because the instruments and syntax are actively evolving. One instance is

Abstract

On this tutorial, you realized about two-dimensional tensors in PyTorch.

Particularly, you realized:

  • Find out how to create two-dimensional tensors in PyTorch and discover their sorts and shapes.
  • About slicing and indexing operations on two-dimensional tensors intimately.
  • To use numerous strategies to tensors akin to, tensor addition, multiplication, and extra.



Supply hyperlink

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments