Skip to Content
Keras Deep Learning Cookbook
book

Keras Deep Learning Cookbook

by Rajdeep Dua, Sujit Pal, Manpreet Singh Ghotra
October 2018
Intermediate to advanced
252 pages
6h 49m
English
Packt Publishing
Content preview from Keras Deep Learning Cookbook

DQN agent class

The DQNAgent class has the following methods that embody, model, remember, and so on, which we discussed earlier:

class DqnAgent:    def __init__(self, state_size, action_size):            def _build_model(self):    def remember(self, state, action, reward, next_state, done):           def act(self, state):    def replay(self, batch_size):    def load(self, name):    def save(self, name):

Each method has the following functions:

  • __init__ (self, state_size, action_size): Initializes the class with state_size and action_size parameters:
    • state_size = 4
    • action_size = 2
  • _build_model(self): Builds the neural network model using the Keras sequential model and returns it. This model has two hidden layers with 24 neurons each. The last output layer has an output ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Applied Deep Learning with Keras

Applied Deep Learning with Keras

Ritesh Bhagwat, Mahla Abdolahnejad, Matthew Moocarme
Advanced Deep Learning with Keras

Advanced Deep Learning with Keras

Rowel Atienza, Neeraj Verma, Valerio Maggio
The Applied TensorFlow and Keras Workshop

The Applied TensorFlow and Keras Workshop

Harveen Singh Chadha, Luis Capelo, Abhranshu Bagchi, Achint Chaudhary, Vishal Chauhan, Alexis Rutherford, Subhash Sundaravadivelu

Publisher Resources

ISBN: 9781788621755Supplemental Content