Numpy Tutorial
Before you turn this problem in, make sure everything runs as expected. First, restart the kernel (in the menubar, select KernelRestart) and then run all cells (in the menubar, select CellRun All).
Make sure you fill in any place that says YOUR CODE HERE or “YOUR ANSWER HERE”, as well as your name and collaborators below:
NAME = ""
COLLABORATORS = ""Numpy Tutorial¶
Ref: https://
This tutorial has been adapted from Numpy tutorial to Pytorch tensors.
If you are running this in Google Colab. Try running it with Runtime > “Change Runtime Type” > “”
!pip install torch torchvision torchaudioimport torch as t
a = t.Tensor([1, 2, 3]) # Tensor is a generalization of a Matrix 2D array, Vector is 1D array, 3D array or 4D arrays are all tensors
a---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[5], line 1
----> 1 import torch as t
2 a = t.Tensor([1, 2, 3]) # Tensor is a generalization of a Matrix 2D array, Vector is 1D array, 3D array or 4D arrays are all tensors
3 a
ModuleNotFoundError: No module named 'torch'Python is good at managing code that runs single instruction on multiple data (SIMD)
import torch as t
a = t.Tensor([1, 2, 3])
a
a = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
a---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Cell In[4], line 1
----> 1 a = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
2 a
NameError: name 't' is not defineda = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
aYou might occasionally hear an array referred to as a “ndarray,” which is shorthand for “N-dimensional array.” An N-dimensional array is simply an array with any number of dimensions. You might also hear 1-D, or one-dimensional array, 2-D, or two-dimensional array, and so on. The NumPy ndarray class is used to represent both matrices and vectors. A vector is an array with a single dimension (there’s no difference between row and column vectors), while a matrix refers to an array with two dimensions. For 3-D or higher dimensional arrays, the term tensor is also commonly used.
a = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
a.ndim # number of dimensions (axes)a.dtypea = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
a.ndim # number of dimensions (axes)a.shape # the shape of the arraya.size() # the total size in number of elementslen(a) # the size of first axesa.dtype # The datatype of array in C typesWe can access the elements in the array using square brackets. When you’re accessing elements, remember that indexing in NumPy starts at 0. That means that if you want to access the first element in your array, you’ll be accessing element “0”.
print(a[0])If you start with these arrays:
a = t.Tensor([1, 2, 3, 4])
b = t.Tensor([5, 6, 7, 8])You can concatenate them with t.cat().
a = t.Tensor([1, 2, 3, 4])
b = t.Tensor([5, 6, 7, 8])
t.cat((a, b)) # Different from numpy concatenate -> catOr, if you start with these arrays:
x = t.Tensor([[1, 2], [3, 4]])
y = t.Tensor([[5, 6]])You can concatenate them with:
x = t.Tensor([[1, 2], [3, 4]])
y = t.Tensor([[5, 6]])
t.cat((x, y), dim=0) # Difference from numpy axis -> dimCan you reshape an array?¶
This section covers arr.reshape()
Yes!
Using arr.reshape() will give a new shape to an array without changing the data. Just remember that when you use the reshape method, the array you want to produce needs to have the same number of elements as the original array. If you start with an array with 12 elements, you’ll need to make sure that your new array also has a total of 12 elements.
If you start with this array:
a = t.arange(6)
aYou can use reshape() to reshape your array. For example, you can reshape this array to an array with three rows and two columns:
b = a.reshape(3, 2)
print(b)How to convert a 1D array into a 2D array (how to add a new axis to an array)¶
This section covers None
You can use None to increase the dimensions of your existing array.
Using None will increase the dimensions of your array by one dimension when used once. This means that a 1D array will become a 2D array, a 2D array will become a 3D array, and so on.
For example, if you start with this array:
a = t.Tensor([1, 2, 3, 4, 5, 6])
a.shapeYou can use None to add a new axis:
a2 = a[None, :]
a2.shapea = t.Tensor([1, 2, 3, 4, 5, 6])
a2 = a[None, :]
a2.shapeYou can explicitly convert a 1D array with either a row vector or a column vector using None. For example, you can convert a 1D array to a row vector by inserting an axis along the first dimension:
row_vector = a[None, :]
row_vector.shapeOr, for a column vector, you can insert an axis along the second dimension:
col_vector = a[:, None]
col_vector.shapeYou can do the inverse operation using .squeeze() method which removes the dimensions of size 1. np.squeeze takes the axis that need to be squeezed as an arugment.
print(col_vector.shape)
a_again = col_vector.squeeze(1)
a_again.shapeprint(row_vector.shape)
row_vector.squeeze(0).shapeYou can also provide a tuple of axis as argument to squeeze.
col_vector_as_3D_tensor = a[None, :, None]
print("col_vector_as_3D_tensor.shape=", col_vector_as_3D_tensor.shape)
col_vector_as_3D_tensor.squeeze((0, 2)).shapeIf you want to squeeze all the axis, you can call squeeze without an argument, although explicit is better than implicit.
col_vector_as_3D_tensor = a[None, :, None]
print("col_vector_as_3D_tensor.shape=", col_vector_as_3D_tensor.shape)
col_vector_as_3D_tensor.squeeze().shapeFind more information about newaxis here
Indexing and slicing¶
You can index and slice NumPy arrays in the same ways you can slice Python lists.
data = t.Tensor([1, 2, 3])
data[1]data[0:2]data[1:]data[-2:]You can visualize it this way:

You may want to take a section of your array or specific array elements to use in further analysis or additional operations. To do that, you’ll need to subset, slice, and/or index your arrays.
If you want to select values from your array that fulfill certain conditions, it’s straightforward with NumPy.
For example, if you start with this array:
a = t.Tensor([[1 , 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])You can easily print all of the values in the array that are less than 5.
print(a[a < 5])You can also select, for example, numbers that are equal to or greater than 5, and use that condition to index an array.
five_up = (a >= 5)
print(a[five_up])You can select elements that are divisible by 2:
divisible_by_2 = a[a%2==0]
print(divisible_by_2)Or you can select elements that satisfy two conditions using the & and | operators:
c = a[(a > 2) & (a < 11)]
print(c)You can also make use of the logical operators & and | in order to return boolean values that specify whether or not the values in an array fulfill a certain condition. This can be useful with arrays that contain names or other categorical values.
five_up = (a > 5) | (a == 5)
print(five_up)You can also use np.nonzero() to select elements or indices from an array.
Starting with this array:
a = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])You can use np.nonzero() to print the indices of elements that are, for example, less than 5:
b = t.nonzero(a < 5, as_tuple=True) # in numpy as_tuple is not neede
print(b)In this example, an array was returned: one for each dimension. The first array represents the row indices where these values are found, and the second array represents the column indices where the values are found.
If you want to generate a list of coordinates where the elements exist, you can zip the arrays, iterate over the list of coordinates, and print them. For example:
list_of_coordinates= list(zip(b[0], b[1]))
for coord in list_of_coordinates:
print(coord)
You can also use np.nonzero() to print the elements in an array that are less than 5 with:
print(a[b])If the element you’re looking for doesn’t exist in the array, then the returned array of indices will be empty. For example:
not_there = t.nonzero(a == 42, as_tuple=True)
print(not_there)Using Ellipsis or ...¶
x = t.Tensor([[[1],[2],[3]], [[4],[5],[6]]])
x.shapex[1:2]Ellipsis or ... expands to the number of : objects needed for the selection tuple to index all dimensions. In most cases, this means that the length of the expanded selection tuple is x.ndim. There may only be a single ellipsis present.
x[..., 0]This is equivalent to:
x[:, :, 0]Each newaxis object in the selection tuple serves to expand the dimensions of the resulting selection by one unit-length dimension. The added dimension is the position of the newaxis object in the selection tuple. newaxis is an alias for None, and None can be used in place of this with the same result. From the above example:
x[:, None, :, :].shapex[:, None, :, :].shapeThis can be handy to combine two arrays in a way that otherwise would require explicit reshaping operations. For example:
x = t.arange(5)
x[:, None] + x[None, :]Learn more about indexing and slicing here and here.
Read more about using the nonzero function at: nonzero.
How to create an array from existing data¶
This section covers slicing and indexing, np.vstack(), np.hstack(), np.hsplit(), .view(), copy()
You can easily create a new array from a section of an existing array.
Let’s say you have this array:
a = t.Tensor([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])You can create a new array from a section of your array any time by specifying where you want to slice your array.
arr1 = a[3:8]
arr1Here, you grabbed a section of your array from index position 3 through index position 8.
You can also stack two existing arrays, both vertically and horizontally. Let’s say you have two arrays, a1 and a2:
a1 = t.Tensor([[1, 1],
[2, 2]])
a2 = t.Tensor([[3, 3],
[4, 4]])You can stack them vertically with vstack:
t.vstack((a1, a2))a1 = t.Tensor([[1, 1],
[2, 2]])
a2 = t.Tensor([[3, 3],
[4, 4]])
t.vstack((a1, a2))Or stack them horizontally with hstack:
t.hstack((a1, a2))You can split an array into several smaller arrays using hsplit. You can specify either the number of equally shaped arrays to return or the columns after which the division should occur.
Let’s say you have this array:
x = t.arange(1, 25).reshape(2, 12)
xIf you wanted to split this array into three equally shaped arrays, you would run:
t.hsplit(x, 3)If you wanted to split your array after the third and fourth column, you’d run:
t.hsplit(x, (3, 4))Learn more about stacking and splitting arrays here.
You can use the view method to create a new array object that looks at the same data as the original array (a shallow copy).
Views are an important NumPy concept! NumPy functions, as well as operations like indexing and slicing, will return views whenever possible. This saves memory and is faster (no copy of the data has to be made). However it’s important to be aware of this - modifying data in a view also modifies the original array!
Let’s say you create this array:
a = t.Tensor([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])Now we create an array b1 by slicing a and modify the first element of b1. This will modify the corresponding element in a as well!
b1 = a[0, :]
b1b1[0] = 99
b1aUsing the copy method will make a complete copy of the array and its data (a deep copy). To use this on your array, you could run:
b2 = a.clone()Basic array operations¶
This section covers addition, subtraction, multiplication, division, and more
Once you’ve created your arrays, you can start to work with them. Let’s say, for example, that you’ve created two arrays, one called “data” and one called “ones”

You can add the arrays together with the plus sign.
data = t.Tensor([1, 2])
ones = t.ones(2, dtype=int)
data + ones
You can, of course, do more than just addition!
data - onesdata * datadata / data
Basic operations are simple with NumPy. If you want to find the sum of the elements in an array, you’d use sum(). This works for 1D arrays, 2D arrays, and arrays in higher dimensions.
a = t.Tensor([1, 2, 3, 4])
a.sum()To add the rows or the columns in a 2D array, you would specify the axis.
If you start with this array:
b = t.Tensor([[1, 1], [2, 2]])You can sum over the axis of rows with:
b.sum(axis=0)You can sum over the axis of columns with:
b.sum(axis=1)Broadcasting¶
There are times when you might want to carry out an operation between an array and a single number (also called an operation between a vector and a scalar) or between arrays of two different sizes. For example, your array (we’ll call it “data”) might contain information about distance in miles but you want to convert the information to kilometers. You can perform this operation with:
data = t.Tensor([1.0, 2.0])
data * 1.6
NumPy understands that the multiplication should happen with each cell. That concept is called broadcasting. Broadcasting is a mechanism that allows NumPy to perform operations on arrays of different shapes. The dimensions of your array must be compatible, for example, when the dimensions of both arrays are equal or when one of them is 1. If the dimensions are not compatible, you will get a ValueError.
More useful array operations¶
This section covers maximum, minimum, sum, mean, product, standard deviation, and more
NumPy also performs aggregation functions. In addition to min, max, and sum, you can easily run mean to get the average, prod to get the result of multiplying the elements together, std to get the standard deviation, and more.
data.max()data.min()data.sum()
Let’s start with this array, called “a”
a = t.Tensor([[0.45053314, 0.17296777, 0.34376245, 0.5510652],
[0.54627315, 0.05093587, 0.40067661, 0.55645993],
[0.12697628, 0.82485143, 0.26590556, 0.56917101]])It’s very common to want to aggregate along a row or column. By default, every NumPy aggregation function will return the aggregate of the entire array. To find the sum or the minimum of the elements in your array, run:
a.sum()Or:
a.min()You can specify on which axis you want the aggregation function to be computed. For example, you can find the minimum value within each column by specifying axis=0.
a.min(axis=0)You can pass Python lists of lists to create a 2-D array (or “matrix”) to represent them in NumPy.
data = t.Tensor([[1, 2], [3, 4], [5, 6]])
data
Indexing and slicing operations are useful when you’re manipulating matrices:
data[0, 1]data[1:3]data[0:2, 0]
You can aggregate matrices the same way you aggregated vectors:
data.max()data.min()data.sum()
You can aggregate all the values in a matrix and you can aggregate them across columns or rows using the axis parameter. To illustrate this point, let’s look at a slightly modified dataset:
data = t.Tensor([[1, 2], [5, 3], [4, 6]])
datadata.max(axis=0)data.max(axis=1)
Once you’ve created your matrices, you can add and multiply them using arithmetic operators if you have two matrices that are the same size.
data = t.Tensor([[1, 2], [3, 4]])
ones = t.Tensor([[1, 1], [1, 1]])
data + ones

You can do these arithmetic operations on matrices of different sizes, but only if one matrix has only one column or one row. In this case, NumPy will use its broadcast rules for the operation.
data = t.Tensor([[1, 2], [3, 4], [5, 6]])
ones_row = t.Tensor([[1, 1]])
data + ones_row
Be aware that when NumPy prints N-dimensional arrays, the last axis is looped over the fastest while the first axis is the slowest. For instance:
t.ones((4, 3, 2))There are often instances where we want NumPy to initialize the values of an array. NumPy offers functions like ones() and zeros(), and the random.Generator class for random number generation for that. All you need to do is pass in the number of elements you want it to generate:
t.ones(3)t.zeros(3)t.rand(3) 
You can also use ones(), zeros(), and random() to create a 2D array if you give them a tuple describing the dimensions of the matrix:
t.ones((3, 2))t.zeros((3, 2))t.rand((3, 2)) 
Read more about creating arrays, filled with 0’s, 1’s, other values or uninitialized, at array creation routines.
Generating random numbers¶
The use of random number generation is an important part of the configuration and evaluation of many numerical and machine learning algorithms. Whether you need to randomly initialize weights in an artificial neural network, split data into random sets, or randomly shuffle your dataset, being able to generate random numbers (actually, repeatable pseudo-random numbers) is essential.
With Generator.integers, you can generate random integers from low (remember that this is inclusive with NumPy) to high (exclusive). You can set endpoint=True to make the high number inclusive.
You can generate a 2 x 4 array of random integers between 0 and 4 with:
t.randint(5, size=(2, 4)) Transposing and reshaping a matrix¶
This section covers arr.reshape(), arr.transpose(), arr.T
It’s common to need to transpose your matrices. NumPy arrays have the property T that allows you to transpose a matrix.

You may also need to switch the dimensions of a matrix. This can happen when, for example, you have a model that expects a certain input shape that is different from your dataset. This is where the reshape method can be useful. You simply need to pass in the new dimensions that you want for the matrix.
data.reshape(2, 3)data.reshape(3, 2)
You can also use .transpose() to reverse or change the axes of an array according to the values you specify.
If you start with this array:
arr = t.arange(6).reshape((2, 3))
arrYou can transpose your array with arr.transpose().
arr.transpose(0, 1)You can also use arr.T:
arr.TSometimes you want to represent multiple matrices in a single array. Let’s say we have two matrices m1 and m2 concatenated in an array as ms
m1 = t.arange(6).reshape(3, 2)
m2 = t.arange(6, 12).reshape(3, 2)
ms = t.stack((m1, m2))
print(ms.shape)
msTo take the transpose of each matrix, m1 and m2, you can use swapaxes or transpose
ms_T = ms.permute((0, 2, 1))
print(ms_T.shape)
ms_Tms_T = ms.swapaxes(-1, -2)
print(ms_T.shape)
ms_TReshaping and flattening multidimensional arrays¶
x = t.Tensor([[1 , 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])You can use flatten to flatten your array into a 1D array.
x.flatten()
a1 = x.flatten()
a1[0] = 99
print(x) # Original array
print(a1) # New arrayWorking with mathematical formulas¶
The ease of implementing mathematical formulas that work on arrays is one of the things that make NumPy so widely used in the scientific Python community.
For example, this is the mean square error formula (a central formula used in supervised machine learning models that deal with regression):

Implementing this formula is simple and straightforward in NumPy:

What makes this work so well is that predictions and labels can contain one or a thousand values. They only need to be the same size.
You can visualize it this way:

In this example, both the predictions and labels vectors contain three values, meaning n has a value of three. After we carry out subtractions the values in the vector are squared. Then NumPy sums the values, and your result is the error value for that prediction and a score for the quality of the model.

a = t.Tensor([2]).to(t.float64)
b = t.Tensor([3]).to(t.float64)
a * bNumpy allows us to multiply many scalars at the same time.
a = t.Tensor([2, 5])
b = t.Tensor([3, 7])
a, ba * bElement-wise multiplication of matrices
Sclar-scalar multiplication in numpy is same as element-wise multiplication of matrices, also known as Hadamard product
A = t.arange(12).reshape(3, 4)
B = t.arange(12, 24).reshape(3, 4)
A, BA * BScalar-vector multiplication \newcommand{\bfv}{\mathbf{v}}
alpha = t.Tensor([3]).to(t.float64)
v = t.Tensor([2, 3]).to(t.float64)
alpha, valpha * vNumpy allows us to multiply a batch of scalars with a batch of vectors at the same time through broadcasting. Let’s say you want to multiply three scalars with three vectors , respectively. You can combine them in single arrays and a matrix of vectors
alphas = t.Tensor([1, 2, 3])
vs = t.Tensor([[2, 3],
[5, 7],
[9, 11]])
print(vs.shape)
alphas, vsIf we simply multiply alphas with vs, numpy will throw an error:
alphas * vsWe need to carefully choose the axes along which we want to multiply alphas with vs. Making alpha.shape = (3, 1) will do the trick.
alphas[:, None] * vsVector-vector dot product \newcommand{\bfa}{\mathbf{a}} \newcommand{\bfb}{\mathbf{b}}
a = t.Tensor([2, 3])
b = t.Tensor([5, 7])
a, ba @ bNote that you do not need a.T because a is 1-D array and taking its transpose will not do anything.
a.TLook at the rules for np.matmul which implements the @ operator.
If both arguments are 2-D they are multiplied like conventional matrices.
If either argument is N-D, N > 2, it is treated as a stack of matrices residing in the last two indexes and broadcast accordingly.
If the first argument is 1-D, it is promoted to a matrix by prepending a 1 to its dimensions. After matrix multiplication the prepended 1 is removed.
If the second argument is 1-D, it is promoted to a matrix by appending a 1 to its dimensions. After matrix multiplication the appended 1 is removed.
In this case rules 3 and 4 are in effect.
How can you multiply many vectors together. Let’s try to multiply 3 pairs of vectors () and (() using numpy.
_as = t.Tensor([[2, 3], # a_1
[3, 5], # a_2
[5, 7]]) # a_3
bs = t.Tensor([[7, 11], # b_1
[11, 13], # b_2
[13, 17]]) # b_3
_as.shape, bs.shapeIf we simply use @ between _as and bs, then we will get an error.
_as @ bsWe can tranpose _as, but that will give us a (2,2) array while we only expect 3 scalars (not 4) each one from corresponding vector multiplication between . There are multiple ways to accomplish this.
Approach 1: Make the last two dimensions compatible for matrix multiplication, then use @ with rule 2 of np.matmul., Use np.squeeze to remove the unnecessary dimensions with size 1.
_as[..., None, :].shape, bs[..., None].shape(_as[..., None, :] @ bs[..., None]).squeeze((-1, -2))Approach 2: Take element-wise product and sum over the last axis (which by definition is the vector-vector dot product).
(_as * bs).sum(axis=-1)Matrix-vector product
Following the vector-vector product example, multiple matrix-vector pairs can be multiplied using the same tricks.
As = t.rand(2, 5, 3) # Two (5x3) matrices
bs = t.rand(2, 3) # Two (3x1) vectors
As.shape, bs.shapeApproach 1: Make them compatiable with rule 2 of np.matmul
Abprod1 = (As @ bs[..., None]).squeeze(-1) # Two (5x1) vectors
Abprod1.shapeApproach 2: Use element-wise multiplication followed by sum along the right axis.
Abprod2 = (As * bs[..., None, :]).sum(axis=-1)
Abprod2.shape
assert t.allclose(Abprod1, Abprod2)As = t.rand(2, 5, 3) # Two (5x3) matrices
Bs = t.rand(2, 3, 7) # Two (3x7) vectors
As.shape, Bs.shape(As @ Bs).shapeNorm/magnitude of a vector
v = t.Tensor([2, 3, 4])
t.linalg.norm(v)Norm of many vectors
vs = t.Tensor([[2, 3, 4], # v_1
[3, 4, 5]]) # v_2
t.linalg.norm(vs, axis=-1)Inverse of a matrix
A = t.Tensor([[1, 2],
[2, 1]])
t.linalg.inv(A)Inverse of many matrices
As = t.Tensor([[[1, 2],
[2, 1]],
[[3, 2],
[2, 3]]])
print(As.shape)
Ainvs = t.linalg.inv(As)
print(Ainvs.shape)How to save and load Tensor objects¶
This section covers t.save, t.load,
You will, at some point, want to save your arrays to disk and load them back without having to re-run the code. Fortunately, there are several ways to save and load objects with torch. The ndarray objects can be saved to and loaded from the disk files with load and save functions.
The .pt files store data, shape, dtype, and other information required to reconstruct the ndarray in a way that allows the array to be correctly retrieved, even when the file is on another machine with different architecture.
It’s easy to save and load and array with t.save(). Just make sure to specify the array you want to save and a file name. For example, if you create this array:
a = t.Tensor([1, 2, 3, 4, 5, 6])You can save it as “filename.pt” with:
t.save( a, open('filename.pt', 'wb'))You can use np.load() to reconstruct your array.
b = t.load('filename.pt')If you want to check your array, you can run:
print(b)