Thứ Hai, 22 tháng 4, 2019

How to Index, Slice and Reshape NumPy Arrays for Machine Learning in Python

Machine learning data is represented as arrays.
In Python, data is almost universally represented as NumPy arrays.
If you are new to Python, you may be confused by some of the pythonic ways of accessing data, such as negative indexing and array slicing.
In this tutorial, you will discover how to manipulate and access your data correctly in NumPy arrays.
After completing this tutorial, you will know:
  • How to convert your list data to NumPy arrays.
  • How to access data using Pythonic indexing and slicing.
  • How to resize your data to meet the expectations of some machine learning APIs.
Let’s get started.
How to Index, Slice and Reshape NumPy Arrays for Machine Learning in Python

Tutorial Overview

This tutorial is divided into 4 parts; they are:
  1. From List to Arrays
  2. Array Indexing
  3. Array Slicing
  4. Array Reshaping

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.
Download Your FREE Mini-Course

1. From List to Arrays

In general, I recommend loading your data from file using Pandas or even NumPy functions.
For examples, see the post:
  • How To Load Machine Learning Data in Python
This section assumes you have loaded or generated your data by other means and it is now represented using Python lists.
Let’s look at converting your data in lists to NumPy arrays.

One-Dimensional List to Array

You may load your data or generate your data and have access to it as a list.
You can convert a one-dimensional list of data to an array by calling the array() NumPy function.
Running the example converts the one-dimensional list to a NumPy array.

Two-Dimensional List of Lists to Array

It is more likely in machine learning that you will have two-dimensional data.
That is a table of data where each row represents a new observation and each column a new feature.
Perhaps you generated the data or loaded it using custom code and now you have a list of lists. Each list represents a new observation.
You can convert your list of lists to a NumPy array the same way as above, by calling the array() function.
Running the example shows the data successfully converted.

2. Array Indexing

Once your data is represented using a NumPy array, you can access it using indexing.
Let’s look at some examples of accessing data via indexing.

One-Dimensional Indexing

Generally, indexing works just like you would expect from your experience with other programming languages, like Java, C#, and C++.
For example, you can access elements using the bracket operator [] specifying the zero-offset index for the value to retrieve.
Running the example prints the first and last values in the array.
Specifying integers too large for the bound of the array will cause an error.
Running the example prints the following error:
One key difference is that you can use negative indexes to retrieve values offset from the end of the array.
For example, the index -1 refers to the last item in the array. The index -2 returns the second last item all the way back to -5 for the first item in the current example.
Running the example prints the last and first items in the array.

Two-Dimensional Indexing

Indexing two-dimensional data is similar to indexing one-dimensional data, except that a comma is used to separate the index for each dimension.
This is different from C-based languages where a separate bracket operator is used for each dimension.
For example, we can access the first row and the first column as follows:
Running the example prints the first item in the dataset.
If we are interested in all items in the first row, we could leave the second dimension index empty, for example:
This prints the first row of data.

3. Array Slicing

So far, so good; creating and indexing arrays looks familiar.
Now we come to array slicing, and this is one feature that causes problems for beginners to Python and NumPy arrays.
Structures like lists and NumPy arrays can be sliced. This means that a subsequence of the structure can be indexed and retrieved.
This is most useful in machine learning when specifying input variables and output variables, or splitting training rows from testing rows.
Slicing is specified using the colon operator ‘:’ with a ‘from‘ and ‘to‘ index before and after the column respectively. The slice extends from the ‘from’ index and ends one item before the ‘to’ index.
Let’s work through some examples.

One-Dimensional Slicing

You can access all data in an array dimension by specifying the slice ‘:’ with no indexes.
Running the example prints all elements in the array.
The first item of the array can be sliced by specifying a slice that starts at index 0 and ends at index 1 (one item before the ‘to’ index).
Running the example returns a subarray with the first element.
We can also use negative indexes in slices. For example, we can slice the last two items in the list by starting the slice at -2 (the second last item) and not specifying a ‘to’ index; that takes the slice to the end of the dimension.
Running the example returns a subarray with the last two items only.

Two-Dimensional Slicing

Let’s look at the two examples of two-dimensional slicing you are most likely to use in machine learning.

Split Input and Output Features

It is common to split your loaded data into input variables (X) and the output variable (y).
We can do this by slicing all rows and all columns up to, but before the last column, then separately indexing the last column.
For the input features, we can select all rows and all columns except the last one by specifying ‘:’ for in the rows index, and :-1 in the columns index.
For the output column, we can select all rows again using ‘:’ and index just the last column by specifying the -1 index.
Putting all of this together, we can separate a 3-column 2D dataset into input and output data as follows:
Running the example prints the separated X and y elements. Note that X is a 2D array and y is a 1D array.

Split Train and Test Rows

It is common to split a loaded dataset into separate train and test sets.
This is a splitting of rows where some portion will be used to train the model and the remaining portion will be used to estimate the skill of the trained model.
This would involve slicing all columns by specifying ‘:’ in the second dimension index. The training dataset would be all rows from the beginning to the split point.
The test dataset would be all rows starting from the split point to the end of the dimension.
Putting all of this together, we can split the dataset at the contrived split point of 2.
Running the example selects the first two rows for training and the last row for the test set.

4. Array Reshaping

After slicing your data, you may need to reshape it.
For example, some libraries, such as scikit-learn, may require that a one-dimensional array of output variables (y) be shaped as a two-dimensional array with one column and outcomes for each column.
Some algorithms, like the Long Short-Term Memory recurrent neural network in Keras, require input to be specified as a three-dimensional array comprised of samples, timesteps, and features.
It is important to know how to reshape your NumPy arrays so that your data meets the expectation of specific Python libraries. We will look at these two examples.

Data Shape

NumPy arrays have a shape attribute that returns a tuple of the length of each dimension of the array.
For example:
Running the example prints a tuple for the one dimension.
A tuple with two lengths is returned for a two-dimensional array.
Running the example returns a tuple with the number of rows and columns.
You can use the size of your array dimensions in the shape dimension, such as specifying parameters.
The elements of the tuple can be accessed just like an array, with the 0th index for the number of rows and the 1st index for the number of columns. For example:
Running the example accesses the specific size of each dimension.

Reshape 1D to 2D Array

It is common to need to reshape a one-dimensional array into a two-dimensional array with one column and multiple arrays.
NumPy provides the reshape() function on the NumPy array object that can be used to reshape the data.
The reshape() function takes a single argument that specifies the new shape of the array. In the case of reshaping a one-dimensional array into a two-dimensional array with one column, the tuple would be the shape of the array as the first dimension (data.shape[0]) and 1 for the second dimension.
Putting this all together, we get the following worked example.
Running the example prints the shape of the one-dimensional array, reshapes the array to have 5 rows with 1 column, then prints this new shape.

Reshape 2D to 3D Array

It is common to need to reshape two-dimensional data where each row represents a sequence into a three-dimensional array for algorithms that expect multiple samples of one or more time steps and one or more features.
A good example is the LSTM recurrent neural network model in the Keras deep learning library.
The reshape function can be used directly, specifying the new dimensionality. This is clear with an example where each sequence has multiple time steps with one observation (feature) at each time step.
We can use the sizes in the shape attribute on the array to specify the number of samples (rows) and columns (time steps) and fix the number of features at 1.
Putting this all together, we get the following worked example.
Running the example first prints the size of each dimension in the 2D array, reshapes the array, then summarizes the shape of the new 3D array.

Further Reading

This section provides more resources on the topic if you are looking go deeper.
  • An Informal Introduction to Python
  • Array Creation in NumPy API
  • Indexing and Slicing in NumPy API
  • Basic Indexing in NumPy API
  • NumPy shape attribute
  • NumPy reshape() function

Summary

In this tutorial, you discovered how to access and reshape data in NumPy arrays with Python.
Specifically, you learned:
  • How to convert your list data to NumPy arrays.
  • How to access data using Pythonic indexing and slicing.
  • How to resize your data to meet the expectations of some machine learning APIs.
Do you have any questions?
Ask your questions in the comments below and I will do my best to answer.