Deep learning for dummies (Record no. 4994)

MARC details
000 -LEADER
fixed length control field 10306nam a22002057a 4500
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20230321181626.0
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 230321b ||||| |||| 00| 0 eng d
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9788126529988
082 ## - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 006.31
Item number MUE
100 ## - MAIN ENTRY--PERSONAL NAME
Personal name Mueller, John Paul
245 ## - TITLE STATEMENT
Title Deep learning for dummies
260 ## - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)
Name of publisher, distributor, etc. Wiley India Pvt. Ltd.
Place of publication, distribution, etc. New Delhi
Date of publication, distribution, etc. 2023
300 ## - PHYSICAL DESCRIPTION
Extent xi, 350 p.
365 ## - TRADE PRICE
Price type code INR
Price amount 749.00
504 ## - BIBLIOGRAPHY, ETC. NOTE
Bibliography, etc. note Table of content<br/>Introduction<br/><br/>About This Book <br/><br/>Foolish Assumptions<br/><br/>Icons Used in This Book<br/><br/>Beyond the Book<br/><br/>Where to Go from Here <br/><br/> <br/><br/>Part 1: Discovering Deep Learning<br/><br/>Chapter 1: Introducing Deep Learning<br/><br/>Defining What Deep Learning Means<br/>Starting from Artificial Intelligence<br/>Considering the role of AI<br/>Focusing on machine learning<br/>Moving from machine learning to deep learning<br/>Using Deep Learning in the Real World<br/>Understanding the concept of learning<br/>Performing deep learning tasks<br/>Employing deep learning in applications<br/>Considering the Deep Learning Programming Environment<br/>Overcoming Deep Learning Hype<br/>Discovering the start-up ecosystem <br/>Knowing when not to use deep learning<br/> <br/><br/>Chapter 2: Introducing the Machine Learning Principles<br/><br/>Defining Machine Learning<br/>Understanding how machine learning works<br/>Understanding that it's pure math<br/>Learning by different strategies<br/>Training, validating, and testing data<br/>Looking for generalization<br/>Getting to know the limits of bias<br/>Keeping model complexity in mind<br/>Considering the Many Different Roads to Learning<br/>Understanding there is no free lunch<br/>Discovering the five main approaches<br/>Delving into some different approaches<br/>Awaiting the next breakthrough<br/>Pondering the True Uses of Machine Learning<br/>Understanding machine learning benefits<br/>Discovering machine learning limits<br/> <br/><br/>Chapter 3: Getting and Using Python<br/><br/>Working with Python in this Book<br/>Obtaining Your Copy of Anaconda<br/>Getting Continuum Analytics Anaconda <br/>Installing Anaconda on Linux<br/>Installing Anaconda on MacOS<br/>Installing Anaconda on Windows<br/>Downloading the Datasets and Example Code<br/>Using Jupyter Notebook<br/>Defining the code repository<br/>Getting and using datasets<br/>Creating the Application<br/>Understanding cells<br/>Adding documentation cells<br/>Using other cell types<br/>Understanding the Use of Indentation<br/>Adding Comments<br/>Understanding comments<br/>Using comments to leave yourself reminders<br/>Using comments to keep code from executing<br/>Getting Help with the Python Language<br/>Working in the Cloud<br/>Using the Kaggle datasets and kernels<br/>Using the Google Colaboratory<br/> <br/><br/>Chapter 4: Leveraging a Deep Learning Framework<br/><br/>Presenting Frameworks<br/>Defining the differences<br/>Explaining the popularity of frameworks<br/>Defining the deep learning framework<br/>Choosing a particular framework<br/>Working with Low-End Frameworks<br/>Caffe2<br/>Chainer<br/>PyTorch<br/>MXNet<br/>Microsoft Cognitive Toolkit/CNTK<br/>Understanding TensorFlow<br/>Grasping why TensorFlow is so good<br/>Making TensorFlow easier by using TFLearn<br/>Using Keras as the best simplifier<br/>Getting your copy of TensorFlow and Keras<br/>Fixing the C++ build tools error in Windows<br/>Accessing your new environment in Notebook<br/> <br/><br/>Part 2: Considering Deep Learning Basics<br/><br/>Chapter 5: Reviewing Matrix Math and Optimization<br/><br/>Revealing the Math You Really Need<br/>Working with data<br/>Creating and operating with a matrix<br/>Understanding Scalar, Vector, and Matrix Operations<br/>Creating a matrix<br/>Performing matrix multiplication<br/>Executing advanced matrix operations<br/>Extending analysis to tensors<br/>Using vectorization effectively<br/>Interpreting Learning as Optimization<br/>Exploring cost functions<br/>Descending the error curve<br/>Learning the right direction<br/>Updating<br/> <br/><br/>Chapter 6: Laying Linear Regression Foundations<br/><br/>Combining Variables<br/>Working through simple linear regression<br/>Advancing to multiple linear regression<br/>Including gradient descent<br/>Seeing linear regression in action<br/>Mixing Variable Types<br/>Modeling the responses<br/>Modeling the features<br/>Dealing with complex relations<br/>Switching to Probabilities<br/>Specifying a binary response<br/>Transforming numeric estimates into probabilities<br/>Guessing the Right Features<br/>Defining the outcome of incompatible features<br/>Solving overfitting using selection and regularization<br/>Learning One Example at a Time<br/>Using gradient descent<br/>Understanding how SGD is different<br/> <br/><br/>Chapter 7: Introducing Neural Networks<br/><br/>Discovering the Incredible Perceptron<br/>Understanding perceptron functionality<br/>Touching the nonseparability limit<br/>Hitting Complexity with Neural Networks<br/>Considering the neuron<br/>Pushing data with feed-forward<br/>Going even deeper into the rabbit hole<br/>Using backpropagation to adjust learning<br/>Struggling with Overfitting<br/>Understanding the problem<br/>Opening the black box<br/> <br/><br/>Chapter 8: Building a Basic Neural Network<br/><br/>Understanding Neural Networks<br/>Defining the basic architecture<br/>Documenting the essential modules<br/>Solving a simple problem<br/>Looking Under the Hood of Neural Networks<br/>Choosing the right activation function<br/>Relying on a smart optimizer<br/>Setting a working learning rate<br/> <br/><br/>Chapter 9: Moving to Deep Learning<br/><br/>Seeing Data Everywhere<br/>Considering the effects of structure<br/>Understanding Moore's implications<br/>Considering what Moore's Law changes<br/>Discovering the Benefits of Additional Data<br/>Defining the ramifications of data<br/>Considering data timeliness and quality<br/>Improving Processing Speed<br/>Leveraging powerful hardware<br/>Making other investments<br/>Explaining Deep Learning Differences from Other Forms of AI<br/>Adding more layers<br/>Changing the activations<br/>Adding regularization by dropout<br/>Finding Even Smarter Solutions<br/>Using online learning<br/>Transferring learning<br/>Learning end to end<br/> <br/><br/>Chapter 10: Explaining Convolutional Neural Networks<br/><br/>Beginning the CNN Tour with Character Recognition<br/>Understanding image basics<br/>Explaining How Convolutions Work<br/>Understanding convolutions<br/>Simplifying the use of pooling<br/>Describing the LeNet architecture<br/>Detecting Edges and Shapes from Images<br/>Visualizing convolutions<br/>Unveiling successful architectures<br/>Discussing transfer learning<br/> <br/><br/>Chapter 11: Introducing Recurrent Neural Networks<br/><br/>Introducing Recurrent Networks<br/>Modeling sequences using memory<br/>Recognizing and translating speech<br/>Placing the correct caption on pictures<br/>Explaining Long Short-Term Memory<br/>Defining memory differences<br/>Walking through the LSTM architecture<br/>Discovering interesting variants<br/>Getting the necessary attention<br/> <br/><br/>Part 3: Interacting with Deep Learning<br/><br/>Chapter 12: Performing Image Classification<br/><br/>Using Image Classification Challenges<br/>Delving into ImageNet and MS COCO<br/>Learning the magic of data augmentation<br/>Distinguishing Traffic Signs<br/>Preparing image data<br/>Running a classification task<br/> <br/><br/>Chapter 13: Learning Advanced CNNs<br/><br/>Distinguishing Classification Tasks<br/>Performing localization<br/>Classifying multiple objects<br/>Annotating multiple objects in images<br/>Segmenting images<br/>Perceiving Objects in Their Surroundings<br/>Discovering how RetinaNet works<br/>Using the Keras-RetinaNet code<br/>Overcoming Adversarial Attacks on Deep Learning Applications<br/>Tricking pixels<br/>Hacking with stickers and other artifacts<br/> <br/><br/>Chapter 14: Working on Language Processing<br/><br/>Processing Language<br/>Defining understanding as tokenization<br/>Putting all the documents into a bag<br/>Memorizing Sequences that Matter<br/>Understanding semantics by word embeddings<br/>Using AI for Sentiment Analysis<br/> <br/><br/>Chapter 15: Generating Music and Visual Art<br/><br/>Learning to Imitate Art and Life<br/>Transferring an artistic style<br/>Reducing the problem to statistics<br/>Understanding that deep learning doesn't create<br/>Mimicking an Artist<br/>Defining a new piece based on a single artist<br/>Combining styles to create new art<br/>Visualizing how neural networks dream<br/>Using a network to compose music<br/> <br/><br/>Chapter 16: Building Generative Adversarial Networks<br/><br/>Making Networks Compete<br/>Finding the key in the competition<br/>Achieving more realistic results<br/>Considering a Growing Field<br/>Inventing realistic pictures of celebrities<br/>Enhancing details and image translation<br/> <br/><br/>Chapter 17: Playing with Deep Reinforcement Learning<br/><br/>Playing a Game with Neural Networks<br/>Introducing reinforcement learning<br/>Simulating game environments<br/>Presenting Q-learning<br/>Explaining Alpha-Go<br/>Determining if you're going to win<br/>Applying self-learning at scale<br/> <br/><br/>Part 4: The Part of Tens<br/><br/>Chapter 18: Ten Applications that Require Deep Learning<br/><br/>Restoring Color to Black-and-White Videos and Pictures<br/>Approximating Person Poses in Real Time<br/>Performing Real-Time Behavior Analysis<br/>Translating Languages<br/>Estimating Solar Savings Potential<br/>Beating People at Computer Games<br/>Generating Voices<br/>Predicting Demographics<br/>Creating Art from Real-World Pictures<br/>Forecasting Natural Catastrophes<br/> <br/><br/>Chapter 19: Ten Must-Have Deep Learning Tools<br/><br/>Compiling Math Expressions Using Theano<br/>Augmenting TensorFlow Using Keras<br/>Dynamically Computing Graphs with Chainer<br/>Creating a MATLAB-Like Environment with Torch<br/>Performing Tasks Dynamically with PyTorch<br/>Accelerating Deep Learning Research Using CUDA<br/>Supporting Business Needs with Deeplearning4j<br/>Mining Data Using Neural Designer<br/>Training Algorithms Using Microsoft Cognitive Toolkit (CNTK)<br/>Exploiting Full GPU Capability Using MXNet<br/> <br/><br/>Chapter 20: Ten Types of Occupations that Use Deep Learning<br/><br/>Managing People<br/>Improving Medicine<br/>Developing New Devices<br/>Providing Customer Support<br/>Seeing Data in New Ways<br/>Performing Analysis Faster<br/>Creating a Better Work Environment<br/>Researching Obscure or Detailed Information<br/>Designing Buildings<br/>Enhancing Safety<br/> <br/><br/>Index
520 ## - SUMMARY, ETC.
Summary, etc. This book makes sense of those increasingly confusing algorithms, and it creates a simple and safe environment to experiment with deep learning. It develops a sense of precisely what deep learning can do at a high level and then it provides examples of the major deep learning application types. The book includes simple example code, but there is also approachable text with real world examples, and even some hands on activities. The reader learns the topic in more than one way and from more than one perspective.<br/><br/>
650 ## - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Machine learning
650 ## - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Artificial intelligence
942 ## - ADDED ENTRY ELEMENTS (KOHA)
Source of classification or shelving scheme Dewey Decimal Classification
Koha item type Book
Holdings
Withdrawn status Lost status Source of classification or shelving scheme Damaged status Not for loan Collection code Bill No Bill Date Home library Current library Shelving location Date acquired Source of acquisition Cost, normal purchase price Total Checkouts Full call number Accession Number Date last seen Copy number Cost, replacement price Price effective from Koha item type
    Dewey Decimal Classification     IT & Decisions Sciences TB3162 16-02-2023 Indian Institute of Management LRC Indian Institute of Management LRC General Stacks 03/21/2023 Technical Bureau India Pvt. Ltd. 524.30   006.31 MUE 004854 03/21/2023 1 749.00 03/21/2023 Book

©2019-2020 Learning Resource Centre, Indian Institute of Management Bodhgaya

Powered by Koha