وبلاگ بلیان

Inside Deep Learning: Math, Algorithms, Models [MEAP]

معرفی کتاب «Inside Deep Learning: Math, Algorithms, Models [MEAP]» نوشتهٔ Edward Raff، منتشرشده توسط نشر Manning Publications Co. LLC در سال 2020. این کتاب در فرمت pdf، زبان انگلیسی ارائه شده است. «Inside Deep Learning: Math, Algorithms, Models [MEAP]» در دستهٔ بدون دسته‌بندی قرار دارد.

Journey through the theory and practice of modern deep learning, and apply innovative techniques to solve everyday data problems.In Inside Deep Learning, you will learn how to: Implement deep learning with PyTorch Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology Adapt existing PyTorch code to solve new problems Inside Deep Learning is an accessible guide to implementing deep learning with the PyTorch framework. It demystifies complex deep learning concepts and teaches you to understand the vocabulary of deep learning so you can keep pace in a rapidly evolving field. No detail is skipped—you'll dive into math, theory, and practical applications. Everything is clearly explained in plain English. About the technology Deep learning doesn't have to be a black box! Knowing how your models and algorithms actually work gives you greater control over your results. And you don't have to be a mathematics expert or a senior data scientist to grasp what's going on inside a deep learning system. This book gives you the practical insight you need to understand and explain your work with confidence. About the book Inside Deep Learning illuminates the inner workings of deep learning algorithms in a way that even machine learning novices can understand. You'll explore deep learning concepts and tools through plain language explanations, annotated code, and dozens of instantly useful PyTorch examples. Each type of neural network is clearly presented without complex math, and every solution in this book can run using readily available GPU hardware! What's inside Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology About the reader For Python programmers with basic machine learning skills. About the author Edward Raff is a Chief Scientist at Booz Allen Hamilton, and the author of the JSAT machine learning library. Table of Contents PART 1 FOUNDATIONAL METHODS 1 The mechanics of learning 2 Fully connected networks 3 Convolutional neural networks 4 Recurrent neural networks 5 Modern training techniques 6 Common design building blocks PART 2 BUILDING ADVANCED NETWORKS 7 Autoencoding and self-supervision 8 Object detection 9 Generative adversarial networks 10 Attention mechanisms 11 Sequence-to-sequence 12 Network design alternatives to RNNs 13 Transfer learning 14 Advanced building blocks Journey through the theory and practice of modern deep learning, and apply innovative techniques to solve everyday data problems. In Inside Deep Learning, you will learn how to: Implement deep learning with PyTorch Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology Adapt existing PyTorch code to solve new problems Inside Deep Learning is an accessible guide to implementing deep learning with the PyTorch framework. It demystifies complex deep learning concepts and teaches you to understand the vocabulary of deep learning so you can keep pace in a rapidly evolving field. No detail is skipped--you'll dive into math, theory, and practical applications. Everything is clearly explained in plain English. About the Technology Deep learning doesn't have to be a black box! Knowing how your models and algorithms actually work gives you greater control over your results. And you don't have to be a mathematics expert or a senior data scientist to grasp what's going on inside a deep learning system. This book gives you the practical insight you need to understand and explain your work with confidence. About the Book Inside Deep Learning illuminates the inner workings of deep learning algorithms in a way that even machine learning novices can understand. You'll explore deep learning concepts and tools through plain language explanations, annotated code, and dozens of instantly useful PyTorch examples. Each type of neural network is clearly presented without complex math, and every solution in this book can run using readily available GPU hardware! What's Inside Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology About the Reader For Python programmers with basic machine learning skills. About the Author Edward Raff is a Chief Scientist at Booz Allen Hamilton, and the author of the JSAT machine learning library. Quotes Pick up this book, and you won't be able to put it down. A rich, engaging knowledge base of deep learning math, algorithms, and models--just like the title says! - From the Foreword by Kirk Borne Ph.D., Chief Science Officer, DataPrime.ai The clearest and easiest book for learning deep learning principles and techniques I have ever read. The graphical representations for the algorithms are an eye-opening revelation. - Richard Vaughan, Purple Monkey Collective A great read for anyone interested in understanding the details of deep learning. - Vishwesh Ravi Shrimali, MBRDI Journey through the theory and practice of modern deep learning, and apply innovative techniques to solve everyday data problems. In Inside Deep Learning , you will learn how Implement deep learning with PyTorch Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology Adapt existing PyTorch code to solve new problems Inside Deep Learning is an accessible guide to implementing deep learning with the PyTorch framework. It demystifies complex deep learning concepts and teaches you to understand the vocabulary of deep learning so you can keep pace in a rapidly evolving field. No detail is skippedyoull dive into math, theory, and practical applications. Everything is clearly explained in plain English. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology Deep learning doesnt have to be a black box! Knowing how your models and algorithms actually work gives you greater control over your results. And you dont have to be a mathematics expert or a senior data scientist to grasp whats going on inside a deep learning system. This book gives you the practical insight you need to understand and explain your work with confidence. About the book Inside Deep Learning illuminates the inner workings of deep learning algorithms in a way that even machine learning novices can understand. Youll explore deep learning concepts and tools through plain language explanations, annotated code, and dozens of instantly useful PyTorch examples. Each type of neural network is clearly presented without complex math, and every solution in this book can run using readily available GPU hardware! What's inside Select the right deep learning components Train and evaluate a deep learning model Fine tune deep learning models to maximize performance Understand deep learning terminology About the reader For Python programmers with basic machine learning skills. About the author Edward Raff is a Chief Scientist at Booz Allen Hamilton, and the author of the JSAT machine learning library. Table of Contents PART 1 FOUNDATIONAL METHODS 1 The mechanics of learning 2 Fully connected networks 3 Convolutional neural networks 4 Recurrent neural networks 5 Modern training techniques 6 Common design building blocks PART 2 BUILDING ADVANCED NETWORKS 7 Autoencoding and self-supervision 8 Object detection 9 Generative adversarial networks 10 Attention mechanisms 11 Sequence-to-sequence 12 Network design alternatives to RNNs 13 Transfer learning 14 Advanced building blocks Inside Deep Learning: Math, Algorithms, Models MEAP V01 Copyright welcome brief contents 1: The Mechanics of Learning 1.1 Getting Started with Colab 1.2 The World as Tensors 1.2.1 PyTorch GPU Acceleration 1.3 Automatic Differentiation 1.4 Optimizing Parameters 1.5 Loading DataSet Objects 1.5.1 Creating a Training and Testing Split 1.6 Exercises 1.7 Summary 2: Fully Connected Networks 2.1 Neural Networks as Optimization 2.1.1 Linear Regression 2.1.2 The Training Loop 2.1.3 Defining the Model 2.1.4 Defining the Loss Function 2.2 Building Our First Neural Network 2.2.1 Adding Non-Linearities 2.3 Classification Problems 2.3.1 Classification Toy Problem 2.3.2 Classification Loss Function 2.4 Better Training Code 2.4.1 Custom Metrics 2.4.2 Training and Testing Passes 2.4.3 Saving Checkpoints 2.4.4 Putting It All Together 2.5 Training in Batches 2.6 Exercises 2.7 Chapter summary 3: Convolutional Neural Networks 3.1 Spatial Structural Prior Beliefs 3.1.1 Loading MNIST with PyTorch 3.2 What are Convolutions? 3.2.1 1D Convolutions 3.2.2 2D Convolutions 3.2.3 Padding 3.2.4 Weight Sharing 3.3 Utility of Convolutions 3.4 Putting it to Practice, our first CNN 3.5 Pooling And Object Location 3.5.1 CNNs with Max Pooling 3.6 Data Augmentation 3.7 Exercises 3.8 Chapter summary
دانلود کتاب Inside Deep Learning: Math, Algorithms, Models [MEAP]