Book Image

Artificial Intelligence with Python Cookbook

By : Ben Auffarth
Book Image

Artificial Intelligence with Python Cookbook

By: Ben Auffarth

Overview of this book

Artificial intelligence (AI) plays an integral role in automating problem-solving. This involves predicting and classifying data and training agents to execute tasks successfully. This book will teach you how to solve complex problems with the help of independent and insightful recipes ranging from the essentials to advanced methods that have just come out of research. Artificial Intelligence with Python Cookbook starts by showing you how to set up your Python environment and taking you through the fundamentals of data exploration. Moving ahead, you’ll be able to implement heuristic search techniques and genetic algorithms. In addition to this, you'll apply probabilistic models, constraint optimization, and reinforcement learning. As you advance through the book, you'll build deep learning models for text, images, video, and audio, and then delve into algorithmic bias, style transfer, music generation, and AI use cases in the healthcare and insurance industries. Throughout the book, you’ll learn about a variety of tools for problem-solving and gain the knowledge needed to effectively approach complex problems. By the end of this book on AI, you will have the skills you need to write AI and machine learning algorithms, test them, and deploy them for production.
Table of Contents (13 chapters)

Playing blackjack

One of the benchmarks in reinforcement learning is gaming. Many different environments related to gaming have been designed by researchers or aficionados. A few of the milestones in gaming have been mentioned in Chapter 1, Getting Started with Artificial Intelligence in Python. The highlights for many would certainly be beating the human champions in both chess and Go—chess champion Garry Kasparov in 1997 and Go champion Lee Sedol in 2016—and reaching super-human performance in Atari games in 2015.

In this recipe, we get started with one of the simplest game environments: blackjack. Blackjack has an interesting property that it has in common with the real world: indeterminism.

Blackjack is a card game where, in its simplest form, you play against a card dealer. You have a deck of cards in front of you, and you can hit, which means you get one more card, or stick, where the dealer gets to draw cards. In order to win, you want to get as close as possible...