[New Book] Click to get The Beginner's Guide to Data Science!
Use the offer code 20offearlybird to get 20% off. Hurry, sale ends soon!

A Gentle Introduction to Tensors for Machine Learning with NumPy

In deep learning it is common to see a lot of discussion around tensors as the cornerstone data structure.

Tensor even appears in name of Google’s flagship machine learning library: “TensorFlow“.

Tensors are a type of data structure used in linear algebra, and like vectors and matrices, you can calculate arithmetic operations with tensors.

In this tutorial, you will discover what tensors are and how to manipulate them in Python with NumPy

After completing this tutorial, you will know:

  • That tensors are a generalization of matrices and are represented using n-dimensional arrays.
  • How to implement element-wise operations with tensors.
  • How to perform the tensor product.

Kick-start your project with my new book Linear Algebra for Machine Learning, including step-by-step tutorials and the Python source code files for all examples.

Let’s get started.

  • Update Oct/2019: Fixed typo in the names of array indexes (thanks Henry Chan).
A Gentle Introduction to Tensors for Machine Learning with NumPy

A Gentle Introduction to Tensors for Machine Learning with NumPy
Photo by Daniel Lombraña González, some rights reserved.

Tutorial Overview

This tutorial is divided into 3 parts; they are:

  1. What are Tensors?
  2. Tensors in Python
  3. Element-Wise Tensor Operations
  4. Tensor Product

Need help with Linear Algebra for Machine Learning?

Take my free 7-day email crash course now (with sample code).

Click to sign-up and also get a free PDF Ebook version of the course.

What are Tensors?

A tensor is a generalization of vectors and matrices and is easily understood as a multidimensional array.

In the general case, an array of numbers arranged on a regular grid with a variable number of axes is known as a tensor.

— Page 33, Deep Learning, 2016.

A vector is a one-dimensional or first order tensor and a matrix is a two-dimensional or second order tensor.

Tensor notation is much like matrix notation with a capital letter representing a tensor and lowercase letters with subscript integers representing scalar values within the tensor.

Many of the operations that can be performed with scalars, vectors, and matrices can be reformulated to be performed with tensors.

As a tool, tensors and tensor algebra is widely used in the fields of physics and engineering. It is a term and set of techniques known in machine learning in the training and operation of deep learning models can be described in terms of tensors.

Tensors in Python

Like vectors and matrices, tensors can be represented in Python using the N-dimensional array (ndarray).

A tensor can be defined in-line to the constructor of array() as a list of lists.

The example below defines a 3x3x3 tensor as a NumPy ndarray. Three dimensions is easier to wrap your head around. Here, we first define rows, then a list of rows stacked as columns, then a list of columns stacked as levels in a cube.

Running the example first prints the shape of the tensor, then the values of the tensor itself.

You can see that, at least in three-dimensions, the tensor is printed as a series of matrices, one for each layer. For this 3D tensor, axis 0 specifies the level, axis 1 specifies the row, and axis 2 specifies the column.

Element-Wise Tensor Operations

As with matrices, we can perform element-wise arithmetic between tensors.

In this section, we will work through the four main arithmetic operations.

Tensor Addition

The element-wise addition of two tensors with the same dimensions results in a new tensor with the same dimensions where each scalar value is the element-wise addition of the scalars in the parent tensors.

In NumPy, we can add tensors directly by adding arrays.

Running the example prints the addition of the two parent tensors.

Tensor Subtraction

The element-wise subtraction of one tensor from another tensor with the same dimensions results in a new tensor with the same dimensions where each scalar value is the element-wise subtraction of the scalars in the parent tensors.

In NumPy, we can subtract tensors directly by subtracting arrays.

Running the example prints the result of subtracting the first tensor from the second.

Tensor Hadamard Product

The element-wise multiplication of one tensor from another tensor with the same dimensions results in a new tensor with the same dimensions where each scalar value is the element-wise multiplication of the scalars in the parent tensors.

As with matrices, the operation is referred to as the Hadamard Product to differentiate it from tensor multiplication. Here, we will use the “o” operator to indicate the Hadamard product operation between tensors.

In NumPy, we can multiply tensors directly by multiplying arrays.

Running the example prints the result of multiplying the tensors.

Tensor Division

The element-wise division of one tensor from another tensor with the same dimensions results in a new tensor with the same dimensions where each scalar value is the element-wise division of the scalars in the parent tensors.

In NumPy, we can divide tensors directly by dividing arrays.

Running the example prints the result of dividing the tensors.

Tensor Product

The tensor product operator is often denoted as a circle with a small x in the middle. We will denote it here as “(x)”.

Given a tensor A with q dimensions and tensor B with r dimensions, the product of these tensors will be a new tensor with the order of q + r or, said another way, q + r dimensions.

The tensor product is not limited to tensors, but can also be performed on matrices and vectors, which can be a good place to practice in order to develop the intuition for higher dimensions.

Let’s take a look at the tensor product for vectors.

Or, unrolled:

Let’s take a look at the tensor product for matrices.

Or, unrolled:

The tensor product can be implemented in NumPy using the tensordot() function.

The function takes as arguments the two tensors to be multiplied and the axis on which to sum the products over, called the sum reduction. To calculate the tensor product, also called the tensor dot product in NumPy, the axis must be set to 0.

In the example below, we define two order-1 tensors (vectors) with and calculate the tensor product.

Running the example prints the result of the tensor product.

The result is an order-2 tensor (matrix) with the lengths 2×2.

The tensor product is the most common form of tensor multiplication that you may encounter, but there are many other types of tensor multiplications that exist, such as the tensor dot product and the tensor contraction.

Extensions

This section lists some ideas for extending the tutorial that you may wish to explore.

  • Update each example using your own small contrived tensor data.
  • Implement three other types of tensor multiplication not covered in this tutorial with small vector or matrix data.
  • Write your own functions to implement each tensor operation.

If you explore any of these extensions, I’d love to know.

Further Reading

This section provides more resources on the topic if you are looking to go deeper.

Books

API

Articles

Other

Summary

In this tutorial, you discovered what tensors are and how to manipulate them in Python with NumPy.

Specifically, you learned:

  • That tensors are a generalization of matrices and are represented using n-dimensional arrays.
  • How to implement element-wise operations with tensors.
  • How to perform the tensor product.

Do you have any questions?
Ask your questions in the comments below and I will do my best to answer.

Get a Handle on Linear Algebra for Machine Learning!

Linear Algebra for Machine Learning

Develop a working understand of linear algebra

...by writing lines of code in python

Discover how in my new Ebook:
Linear Algebra for Machine Learning

It provides self-study tutorials on topics like:
Vector Norms, Matrix Multiplication, Tensors, Eigendecomposition, SVD, PCA and much more...

Finally Understand the Mathematics of Data

Skip the Academics. Just Results.

See What's Inside

42 Responses to A Gentle Introduction to Tensors for Machine Learning with NumPy

  1. Avatar
    Laique Merlin Djeutchouang February 14, 2018 at 7:29 pm #

    Hi Jason!

    Very nice, simple and well detailed introduction to one of the key mathematical tools for deep learning. I think any amateur in tensor could easily take over from here.

  2. Avatar
    Dhananjay May 31, 2018 at 12:37 pm #

    Hello Jason

    This is a fantastic introduction to tensors. Very quick read-through for beginners like me. Very Helpful.

  3. Avatar
    Xiwang Li November 3, 2018 at 9:38 am #

    Thank you for your blog, which is very helpful. But I have a general question. Why do we need tensors in deep learning. Why not just use Numpy arrays?

    • Avatar
      Jason Brownlee November 4, 2018 at 6:23 am #

      You can develop your own library using numpy arrays.

      Tensors are simply a generalisation of matrices.

  4. Avatar
    justin January 15, 2019 at 9:37 am #

    “Given a tensor A with q dimensions and tensor B with r dimensions, the product of these tensors will be a new tensor with the order of q + r or, said another way, q + r dimensions.”

    Maybe… q*r instead?

    • Avatar
      Victor July 7, 2019 at 8:45 am #

      Good tutorial, with a very clear definition. I think the tensor dot product is probably the most tricky of the operators as you provide a few examples for low dimensions but don’t really provide the general formula for order n by order m. I think it would also be helpful to relate what tensor are used for when representing concepts for deep learning.

  5. Avatar
    Sebastian February 25, 2019 at 8:07 pm #

    Thank you, well-summarized!

  6. Avatar
    Ahmad June 13, 2019 at 1:49 am #

    Nice stuff but I wish you had decompositions and other things as well. Thanks, it is well-written.

  7. Avatar
    Mahalingam June 29, 2019 at 9:11 pm #

    this is totally different from matrix multiplication. in matrix dimenion is definedas A mxn where the matrix A has dimension m rows and n columns.

  8. Avatar
    Abraham July 16, 2019 at 5:01 am #

    Hi Jason!
    I have one question about tensor conversion.İ am using attention mechanism,and I must do my operations in for loop so that i store my results in a list.At the end,i cannot convert the list into a tensor in order to make the results connected with dense layers.Can u suggest anything to come over this problem?

    • Avatar
      Jason Brownlee July 16, 2019 at 8:24 am #

      A list or a numpy array can represent a tensor.

      I think you might mean a Tensor data type for a given library? Perhaps check the library API on how to convert lists and arrays to that type?

  9. Avatar
    sunny1304 July 25, 2019 at 2:22 am #

    Very nice tutorial.
    I am no expert in math, but isn’t vector is a special type of tensor not the other way around ?

    Thanks.

  10. Avatar
    Vladimir September 4, 2019 at 12:39 am #

    Well explained. And easy to understand!

  11. Avatar
    Henry Chan October 22, 2019 at 11:06 am #

    Hi Jason,

    You said that “For this 3D tensor, axis 0 specifies the level, axis 1 specifies the column, and axis 2 specifies the row.”

    But I think I should be:
    For this 3D tensor, axis 0 specifies the level, axis 1 specifies the row, and axis 2 specifies the column.

    A = array([
    [[1,2,3], [4,5,6], [7,8,9]],
    [[11,12,13], [14,15,16], [17,18,19]],
    [[21,22,23], [24,25,26], [27,28,29]]
    ])

    Wint zero index, we will have:

    print(A[0,0,0]) –> 1: Level 0, Row 0, Column 0
    print(A[0,0,1]) –> 2: Level 0, Row 0, Column 1
    print(A[0,1,0]) –> 4: Level 0, Row 2, Column 0

    Correct me if I wrong.
    Thanks

    • Avatar
      Jason Brownlee October 22, 2019 at 1:48 pm #

      Thanks.

      Also try this:

      Which prints:

      [1 2 3]
      [1 4 7]

  12. Avatar
    Yansen Xiao December 6, 2019 at 2:42 am #

    In all the addition, subtraction, product, and division examples, I see this:
    b111, b121, t131
    B = (b211, t221, t231)

    Should the “t” be “b”? I am totally new in tensor and this is the first time I am learning it.

  13. Avatar
    Max January 28, 2020 at 11:46 pm #

    Thanks for this. I’m still confused, as other explanations mention that tensors have extra properties that are not captured by the idea that it’s just a generalization of matrices:

    “But [the generalized matrix] description misses the most important property of a tensor!

    A tensor is a mathematical entity that lives in a structure and interacts with other mathematical entities. If one transforms the other entities in the structure in a regular way, then the tensor must obey a related transformation rule.”

    https://medium.com/@quantumsteinke/whats-the-difference-between-a-matrix-and-a-tensor-4505fbdc576c

    • Avatar
      Jason Brownlee January 29, 2020 at 6:37 am #

      Not sure about that…

      Perhaps talk to the author about their ideas?

    • Avatar
      matt May 27, 2020 at 1:03 am #

      It seems computer scientists have borrowed this term from physicists / mathematicians and redefined it to mean a “multidimensional array”. Jason Brownlee points this out by even quoting from the “Deep Learning” book. But your confusion is warranted because this is not the definition that physicists use.

      Physicists use the term tensor to mean a geometric object that remains invariant (i.e., it retains properties like length, direction, etc) when a coordinate system changes).

      It can be helpful to understand what is NOT a tensor. Suppose we focus on a single component in a vector. This component (a rank 0 tensor) will change when the underlying coordinate system changes. So a single component cannot be a tensor, even though it satisfies the definition of a multidimensional array.

      For an understanding of tensors, I would suggest checking out eigenchris videos: https://www.youtube.com/watch?v=8ptMTLzV4-I&t=321s

  14. Avatar
    manikanta kotte April 1, 2020 at 10:22 pm #

    Sir how to do that sum using for loop.Please explain?

  15. Avatar
    Stephen Hobbs June 18, 2020 at 12:24 pm #

    Thanks Jason! Very interesting. This tutorial helped me to understand the concepts. Very straightforward, great use of codes and charts. Well done!

  16. Avatar
    Phil June 28, 2020 at 6:04 am #

    Useful article, but it doesn’t describe what tensors represent in the machine learning domain. Do they represent training data, model itself, both, and / or other?

    • Avatar
      Jason Brownlee June 29, 2020 at 6:17 am #

      Thanks.

      They can be used to represent data or model coefficients, e.g. weights in a neural net.

  17. Avatar
    dong zhan August 10, 2020 at 3:58 pm #

    tensor product, use this ⊗

  18. Avatar
    Abhi Bhagat August 29, 2020 at 4:47 pm #

    n the example below, we define two order-1 tensors (vectors) with and calculate the tensor product.

    can you please explain how ” -1 ” came here ?

    • Avatar
      Jason Brownlee August 30, 2020 at 6:31 am #

      Read it as “order-one”, not negative one. E.g. one dimensional.

  19. Avatar
    Abdul November 5, 2021 at 7:48 am #

    Why tensors?

    • Avatar
      Adrian Tam November 7, 2021 at 8:00 am #

      Because it is the way we can hold an array of numbers together.

  20. Avatar
    Roz December 21, 2021 at 9:02 pm #

    Thanks a million for this tutorial.
    Recently I’m working on a problem which each it’s sample is a matrix, for example 10*10 (so the data set is a tensor with dimension of 10*10*1000)
    I want to classify this data set. but the classification is not discrete.
    So it may have to be a regression problem. I’m not sure, and I want to predict a matrix( the output of the classifier must be a matrix)
    Is there any source ,any book and etc that could help me to solve this problem?

    your guidance on this matter would be appreciated
    thanks a lot.

Leave a Reply