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)

Stopping credit defaults

For a company that extends credit to its customers, in order to be profitable, the most important criterion for approving applications is whether they can pay back their debts. This is determined by a process called credit scoring that is based on the financial history and socio-economic information of the customer. Traditionally, for credit scoring, scorecards have been used, although in recent years, these simple models have given way to more sophisticated machine learning models. Scorecards are basically checklists of different items of information, each associated with points that are all added up in the end and compared to a pass mark.

We'll use a relatively small dataset of credit card applications; however, it can still give us some insights into how to do credit scoring with neural network models. We'll implement a model that includes a distribution of weights as well as a distribution over outputs. This is called epistemic, aleatoric uncertainty...