Advanced Applied Deep Learning -  Umberto Michelucci

Advanced Applied Deep Learning (eBook)

Convolutional Neural Networks and Object Detection
eBook Download: PDF
2019 | 1. Auflage
XVIII, 294 Seiten
Apress (Verlag)
978-1-4842-4976-5 (ISBN)
Systemvoraussetzungen
46,99 inkl. MwSt
  • Download sofort lieferbar
  • Zahlungsarten anzeigen

Develop and optimize deep learning models with advanced architectures. This book teaches you the intricate details and subtleties of the algorithms that are at the core of convolutional neural networks. In Advanced Applied Deep Learning, you will study advanced topics on CNN and object detection using Keras and TensorFlow. 

Along the way, you will look at the fundamental operations in CNN, such as convolution and pooling, and then look at more advanced architectures such as inception networks, resnets, and many more. While the book discusses theoretical topics, you will discover how to work efficiently with Keras with many tricks and tips, including how to customize logging in Keras with custom callback classes, what is eager execution, and how to use it in your models.

Finally, you will study how object detection works, and build a complete implementation of the YOLO (you only look once) algorithm in Keras and TensorFlow. By the end of the book you will have implemented various models in Keras and learned many advanced tricks that will bring your skills to the next level.


What You Will Learn

  • See how convolutional neural networks and object detection work
  • Save weights and models on disk
  • Pause training and restart it at a later stage
  • Use hardware acceleration (GPUs) in your code
  • Work with the Dataset TensorFlow abstraction and use pre-trained models and transfer learning
  • Remove and add layers to pre-trained networks to adapt them to your specific project
  • Apply pre-trained models such as Alexnet and VGG16 to new datasets

 

Who This Book Is For

Scientists and researchers with intermediate-to-advanced Python and machine learning know-how. Additionally, intermediate knowledge of Keras and TensorFlow is expected.




Umberto Michelucci studied physics and mathematics. He is an expert in numerical simulation, statistics, data science, and machine learning. In addition to several years of research experience at the George Washington University (USA) and the University of Augsburg (DE), he has 15 years of practical experience in the fields of data warehouse, data science, and machine learning. His last book Applied Deep Learning - A Case-Based Approach to Understanding Deep Neural Networks was published by Apress in 2018. He is very active in research in the field of artificial intelligence and publishes his research results regularly in leading journals and gives regular talks at international conferences.

He teaches as a lecturer at the Zurich University of Applied Sciences and at the HWZ University of Applied Sciences in Business Administration. He is also responsible for AI, research, and new technologies at Helsana Vesicherung AG.

He recently founded TOELT LLC, a company aiming to develop new and modern teaching, coaching, and research methods for AI, to make AI technologies and research accessible to everyone.


Develop and optimize deep learning models with advanced architectures. This book teaches you the intricate details and subtleties of the algorithms that are at the core of convolutional neural networks. In Advanced Applied Deep Learning, you will study advanced topics on CNN and object detection using Keras and TensorFlow. Along the way, you will look at the fundamental operations in CNN, such as convolution and pooling, and then look at more advanced architectures such as inception networks, resnets, and many more. While the book discusses theoretical topics, you will discover how to work efficiently with Keras with many tricks and tips, including how to customize logging in Keras with custom callback classes, what is eager execution, and how to use it in your models. Finally, you will study how object detection works, and build a complete implementation of the YOLO (you only look once) algorithm in Keras and TensorFlow. By the end of the book you will have implemented various models in Keras and learned many advanced tricks that will bring your skills to the next level.What You Will LearnSee how convolutional neural networks and object detection workSave weights and models on diskPause training and restart it at a later stage Use hardware acceleration (GPUs) in your codeWork with the Dataset TensorFlow abstraction and use pre-trained models and transfer learningRemove and add layers to pre-trained networks to adapt them to your specific projectApply pre-trained models such as Alexnet and VGG16 to new datasets Who This Book Is ForScientists and researchers with intermediate-to-advanced Python and machine learning know-how. Additionally, intermediate knowledge of Keras and TensorFlow is expected.

Table of Contents 5
About the Author 10
About the Technical Reviewer 11
Acknowledgments 12
Introduction 13
Chapter 1: Introduction and Development Environment Setup 15
GitHub Repository and Companion Website 17
Mathematical Level Required 17
Python Development Environment 18
Google Colab 19
Benefits and Drawbacks to Google Colab 22
Anaconda 23
Installing TensorFlow the Anaconda Way 25
Local Jupyter Notebooks 28
Benefits and Drawbacks to Anaconda 31
Docker Image 32
Benefits and Drawbacks to a Docker Image 38
Which Option Should You Choose? 39
Chapter 2: TensorFlow: Advanced Topics 41
Tensorflow Eager Execution 42
Enabling Eager Execution 43
Polynomial Fitting with Eager Execution 44
MNIST Classification with Eager Execution 48
TensorFlow and Numpy Compatibility 53
Hardware Acceleration 54
Checking the Availability of the GPU 54
Device Names 55
Explicit Device Placement 56
GPU Acceleration Demonstration: Matrix Multiplication 57
Effect of GPU Acceleration on the MNIST Example 59
Training Only Specific Layers 61
Training Only Specific Layers: An Example 62
Removing Layers 66
Keras Callback Functions 68
Custom Callback Class 69
Example of a Custom Callback Class 71
Save and Load Models 75
Save Your Weights Manually 81
Saving the Entire Model 82
Dataset Abstraction 82
Iterating Over a Dataset 85
Simple Batching 86
Simple Batching with the MNIST Dataset 87
Using tf.data.Dataset in Eager Execution Mode 90
Conclusions 91
Chapter 3: Fundamentals of Convolutional Neural Networks 92
Kernels and Filters 92
Convolution 94
Examples of Convolution 104
Pooling 112
Padding 117
Building Blocks of a CNN 118
Convolutional Layers 118
Pooling Layers 121
Stacking Layers Together 121
Number of Weights in a CNN 122
Convolutional Layer 122
Pooling Layer 123
Dense Layer 123
Example of a CNN: MNIST Dataset 123
Visualization of CNN Learning 128
Brief Digression: keras.backend.function() 128
Effect of Kernels 131
Effect of Max-Pooling 134
Chapter 4: Advanced CNNs and Transfer Learning 137
Convolution with Multiple Channels 137
History and Basics of Inception Networks 141
Inception Module: Naïve Version 143
Number of Parameters in the Naïve Inception Module 144
Inception Module with Dimension Reduction 145
Multiple Cost Functions: GoogLeNet 146
Example of Inception Modules in Keras 148
Digression: Custom Losses in Keras 151
How To Use Pre-Trained Networks 153
Transfer Learning: An Introduction 157
A Dog and Cat Problem 161
Classical Approach to Transfer Learning 162
Experimentation with Transfer Learning 169
Chapter 5: Cost Functions and Style Transfer 173
Components of a Neural Network Model 173
Training Seen as an Optimization Problem 174
A Concrete Example: Linear Regression 176
The Cost Function 177
Mathematical Notation 177
Typical Cost Functions 178
Mean Square Error 178
Intuitive Explanation 179
MSE as the Second Moment of a Moment-Generating Function 179
Cross-Entropy 181
Self-Information or Suprisal of an Event 181
Suprisal Associated with an Event X 183
Cross-Entropy 183
Cross-Entropy for Binary Classification 185
Cost Functions: A Final Word 188
Neural Style Transfer 188
The Mathematics Behind NST 190
An Example of Style Transfer in Keras 195
NST with Silhouettes 202
Masking 204
Chapter 6: Object Classification: An Introduction 206
What Is Object Localization? 207
Most Important Available Datasets 210
Intersect Over Union (IoU) 211
A Naïve Approach to Solving Object Localization (Sliding Window Approach) 213
Problems and Limitations the with Sliding Window Approach 215
Classification and Localization 222
Region-Based CNN (R-CNN) 224
Fast R-CNN 228
Faster R-CNN 230
Chapter 7: Object Localization: An Implementation in Python 232
The You Only Look Once (YOLO) Method 233
How YOLO Works 234
Dividing the Image Into Cells 234
YOLOv2 (Also Known As YOLO9000) 237
YOLOv3 238
Non-Maxima Suppression 239
Loss Function 239
Classification Loss 240
Localization Loss 240
Confidence Loss 240
Total Loss Function 241
YOLO Implementation in Python and OpenCV 242
Darknet Implementation of YOLO 242
Testing Object Detection with Darknet 244
Training a Model for YOLO for Your Specific Images 251
Concluding Remarks 252
Chapter 8: Histology Tissue Classification 253
Data Analysis and Preparation 254
Model Building 263
Data Augmentation 274
Horizontal and Vertical Shifts 276
Flipping Images Vertically 279
Randomly Rotating Images 279
Zooming in Images 282
Putting All Together 282
VGG16 with Data Augmentation 283
The fit() Function 283
The fit_generator() Function 284
The train_on_batch() Function 285
Training the Network 286
And Now Have Fun… 287
Index 288

Erscheint lt. Verlag 28.9.2019
Zusatzinfo XVIII, 285 p. 88 illus., 28 illus. in color.
Sprache englisch
Themenwelt Mathematik / Informatik Informatik Programmiersprachen / -werkzeuge
Informatik Theorie / Studium Künstliche Intelligenz / Robotik
Schlagworte convolutional neural network • Deep learning • Image Recognition • Keras • Python • Recurrent Neural Network • ResNets • Sklearn • Speech Recognition • tensorflow
ISBN-10 1-4842-4976-3 / 1484249763
ISBN-13 978-1-4842-4976-5 / 9781484249765
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 7,6 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
der Praxis-Guide für Künstliche Intelligenz in Unternehmen - Chancen …

von Thomas R. Köhler; Julia Finkeissen

eBook Download (2024)
Campus Verlag
38,99
Wie du KI richtig nutzt - schreiben, recherchieren, Bilder erstellen, …

von Rainer Hattenhauer

eBook Download (2023)
Rheinwerk Computing (Verlag)
24,90