Preparing and processing data

For our first task, we will use the tic-tac-toe dataset from the ReinforcementLearning package. In this case, the dataset is built for us; however, we will investigate how it is made to understand how to get data into the proper format for reinforcement learning:

  1. First, let's load the tic-tac-toe data. To load the dataset, we first load the ReinforcementLearning library and then call the data function with "tictactoe" as the argument. We load our data by running the following code:
library(ReinforcementLearning)data("tictactoe")

After running these lines, you will see the data object in the data Environment pane. Its current type is <Promise>; however, we will change that in the next step to see what is contained ...

Get Hands-On Deep Learning with R now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.