October 2018
Intermediate to advanced
472 pages
10h 57m
English
We will be using numpy, gym, matplotlib, keras, and tensorflow packages in this segment of the exercise. Here, TensorFlow will be used as the backend for Keras. You can install these packages using pip:
import randomimport numpy as npimport matplotlib.pyplot as pltfrom keras.layers import Dense, Dropout, Activationfrom keras.models import Sequentialfrom keras.optimizers import Adamfrom keras import backend as kfrom collections import dequeimport gym
Read now
Unlock full access