Book Image

TensorFlow 2 Reinforcement Learning Cookbook

By : Palanisamy P
Book Image

TensorFlow 2 Reinforcement Learning Cookbook

By: Palanisamy P

Overview of this book

With deep reinforcement learning, you can build intelligent agents, products, and services that can go beyond computer vision or perception to perform actions. TensorFlow 2.x is the latest major release of the most popular deep learning framework used to develop and train deep neural networks (DNNs). This book contains easy-to-follow recipes for leveraging TensorFlow 2.x to develop artificial intelligence applications. Starting with an introduction to the fundamentals of deep reinforcement learning and TensorFlow 2.x, the book covers OpenAI Gym, model-based RL, model-free RL, and how to develop basic agents. You'll discover how to implement advanced deep reinforcement learning algorithms such as actor-critic, deep deterministic policy gradients, deep-Q networks, proximal policy optimization, and deep recurrent Q-networks for training your RL agents. As you advance, you’ll explore the applications of reinforcement learning by building cryptocurrency trading agents, stock/share trading agents, and intelligent agents for automating task completion. Finally, you'll find out how to deploy deep reinforcement learning agents to the cloud and build cross-platform apps using TensorFlow 2.x. By the end of this TensorFlow book, you'll have gained a solid understanding of deep reinforcement learning algorithms and their implementations from scratch.
Table of Contents (11 chapters)

Chapter 6: Reinforcement Learning in the Real World – Building Intelligent Agents to Complete Your To-Dos

An RL Agent needs to interact with the environment to learn and train. Training RL Agents for real-world applications usually comes with physical limitations and challenges. This is because the Agent could potentially cause damage to the real-world system it is dealing with while learning. Fortunately, there are a lot of tasks in the real world that do not necessarily have such challenges, and yet can be very useful for completing the day-to-day real-world tasks that are available in our To-Do lists!

The recipes in this chapter will help you build RL Agents that can complete tasks on the internet, ranging from responding to annoying popups, booking flights on the web, managing emails and social media accounts, and more. We can do all of this without using a bunch of APIs that change over time or utilizing hardcoded scripts that stop working when a web page is updated...