Book Image

Hands-On Deep Learning Architectures with Python

By : Yuxi (Hayden) Liu, Saransh Mehta
Book Image

Hands-On Deep Learning Architectures with Python

By: Yuxi (Hayden) Liu, Saransh Mehta

Overview of this book

Deep learning architectures are composed of multilevel nonlinear operations that represent high-level abstractions; this allows you to learn useful feature representations from the data. This book will help you learn and implement deep learning architectures to resolve various deep learning research problems. Hands-On Deep Learning Architectures with Python explains the essential learning algorithms used for deep and shallow architectures. Packed with practical implementations and ideas to help you build efficient artificial intelligence systems (AI), this book will help you learn how neural networks play a major role in building deep architectures. You will understand various deep learning architectures (such as AlexNet, VGG Net, GoogleNet) with easy-to-follow code and diagrams. In addition to this, the book will also guide you in building and training various deep architectures such as the Boltzmann mechanism, autoencoders, convolutional neural networks (CNNs), recurrent neural networks (RNNs), natural language processing (NLP), GAN, and more—all with practical implementations. By the end of this book, you will be able to construct deep models using popular frameworks and datasets with the required design patterns for each architecture. You will be ready to explore the potential of deep architectures in today's world.
Table of Contents (15 chapters)
Free Chapter
1
Section 1: The Elements of Deep Learning
5
Section 2: Convolutional Neural Networks
8
Section 3: Sequence Modeling
10
Section 4: Generative Adversarial Networks (GANs)
12
Section 5: The Future of Deep Learning and Advanced Artificial Intelligence

Summary

We begun this chapter by discussing the drawbacks of deep feedforward networks and how CNNs had evolved to overcome their drawbacks. Next, we dived deep into the architecture of CNNs, understanding the different layers of CNN—the input layer, convolution layer, maxpooling layer, and fully connected layer. We looked at the architectures of some famous image classification CNNs and then built our first CNN image classifier on the CIFAR-10 dataset. Then, we moved on to object detection with CNNs. We discussed various object detectors, such as RCNN, Faster-RCNN, YOLO, and SSD. Lastly, we used the TensorFlow detection model zoo to implement our first object detector using SSD. 

In the next chapter, we will look at CNN architectures that require less computational power and are lightweight to run on a mobile device. They are called MobileNets!

...