7% found this document useful (14 votes)
5K views

Deep Learning For Computer Vision PDF

Uploaded by

KANWAL RAI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
7% found this document useful (14 votes)
5K views

Deep Learning For Computer Vision PDF

Uploaded by

KANWAL RAI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 24

 Navigation

Deep Learning for Computer Vision


Image Classification, Object Detection, and Face Recognition
in Python
$37 USD

Deep learning methods can achieve state-of-the-


art results on challenging computer vision
problems such as image classification, object
detection, and face recognition.

In this new Ebook written in the friendly Machine


Learning Mastery style that you’re used to, skip the
math and jump straight to getting results.

With clear explanations, standard Python libraries,


and step-by-step tutorial lessons, you’ll discover
how to develop deep learning models for your own
computer vision projects.

About this Ebook:

Read on all devices: PDF format Ebook, no


DRM.
Tons of tutorials: 30 step-by-step lessons,
563 pages.
Foundations: intuitions behind convolutions,
pooling, more.
Real-world projects: detect objects,
recognize faces, more.
Working code: 158 Python (.py) code files
included.

Convinced?
Click to jump straight to the packages.

Outstanding book, would really recommend it to everyone


with interest in Computer Vision and Deep Learning!
Nikolay Oskolkov
Bioinformatician

…why deep learning?


Traditionally, Computer Vision is REALLY HARD
We are awash in images: photographs, videos, YouTube, Instagram, and increasingly from live video.

Computer Vision, often shortened to CV, is defined as a field of study that seeks to develop techniques to
help computers “see” and understand the content of digital images such as photographs and videos.

The problem of computer vision appears simple because it is trivially solved by people, even children.

Helping computers to see turns out to be very hard.

One reason is that we don’t have a strong grasp of how human vision works.

Another reason why it is such a challenging problem is the complexity inherent in the visual world.

A true vision system must be able to see in any of an infinite number of scenes and still extract something
meaningful.

UNLOCK Computer Vision With Deep Learning


The Promise of Deep Learning for Computer Vision
Deep learning methods are popular, primarily because they are delivering on their promise.

Some of the first large demonstrations of the power of deep learning were in computer vision, specifically
image recognition. More recently in object detection and face recognition.

The five promises of deep learning for computer vision are as follows:

The Promise of Automatic Feature Extraction. Features can be automatically learned and
extracted from raw image data.
The Promise of End-to-End Models. Single end-to-end models can replace pipelines of
specialized models.
The Promise of Model Reuse. Learned features and even entire models can be reused across
related tasks.
The Promise of Superior Performance. Techniques demonstrate better skill than classical
methods on challenging tasks.
The Promise of General Method. A single general method (e.g. convolutional neural networks)
can be used on a range of related tasks.

Impressive Applications of Deep Learning


Computer vision is not “solved” but deep learning is required to get you to the state-of-the-art on many
challenging problems in the field.

Deep learning methods are delivering on their promise in computer vision.

Let’s look at three examples to give you a snapshot of the results that deep learning is capable of achieving
in the field of computer vision:

1) Automatic Object 2) Automatic Face 3) Automatic Image


Detection. Recognition. Classification
Object detection is the task Face recognition is the task Image classification is the task
where, given a photograph of a where, given a photograph of where, given a photograph of an
scene, the system must locate, one or more people, the system object, the system must classify
draw a bounding box, and must either identify the people in the photograph into one or more
classify each object. the photograph based on their known categories.
face or verify that the person in
the photograph is who they
claim to be.

Deep learning models can trivially classify photos of dogs and cats with 99% accuracy, a
previously unsolved problem.
Deep learning object detection tasks are now so good and so fast that they can be used on real-
time video.
Deep learning face recognition models can now outperform humans on the same tasks.

You can see that developing systems capable of these tasks would be valuable in a wide range of domains
and industries.

So, how can you get started and get good at using deep learning for computer vision fast?

…introducing:
“Deep Learning for Computer Vision“

This is the book I wish I had when I was getting started with deep learning for visual recognition.

This book was born out of one thought:

How can I get you proficient with deep learning for computer vision as fast as possible?

The Machine Learning Mastery method suggests that the best way of learning this material is by doing.
This means the focus of the book is hands-on with projects and tutorials. This also means not covering
some topics, even topics covered by “everyone else” like DSP theory or modeling math.

This book was designed to teach you step-by-step how to bring modern deep learning methods to your
computer vision projects.

You will be led along the critical path from a practitioner interested in computer vision to a practitioner that
can confidently apply deep learning methods to computer vision problems.

This is the fastest process that I can devise for getting you proficient with deep learning for computer
vision.

…you will:
Develop Real Practical Skills That You Can Apply Immediately,
such as:
Image Data Preparation Image Classification
Standard Libraries. Discover how to load From Scratch. Discover how to develop
and handle image data using PIL/Pillow. image classification models from scratch
Keras Image Handling. Discover how to for benchmark datasets.
handle image data using the Keras deep Model Regularization: Discover how to
learning library. add regularization methods like dropout
Scale Pixels. Discover how to normalize and data augmentation to reduce
and standardize pixel data. overfitting and lift model performance.
Load Large Datasets. Discover how to Pre-Trained Models. Discover how to
progressively load large image datasets harness world-class pre-trained models to
from file. accelerate learning on new problems.
Image Augmentation. Discover how to Dogs vs Cats. Develop a top-performing
use image data augmentation to improve model to classify photographs of dogs and
model performance. cats.
Amazon Rainforest. Develop a top-
Convolutions and Pooling performing model to label aerial
photographs of the Amazon rainforest.
Channel Ordering. Discover intuitions
behind channels-first and last ordering and Object Detection
how to change the ordering.
Convolutional Layers. Discover intuitions Object Recognition. Discover the field of
behind convolutional layers and how filters object recognition and the subproblems of
work. localization and detection.
Padding and Stride. Discover intuitions R-CNN. Discover the region-based
behind stride, the effect of filter size and convolutional neural network model and
how to fix border effects with padding. how to use a pre-trained model for object
Pooling Layers. Discover intuitions detection.
behind pooling and how average, max, YOLO. Discover the you-only-look-once
and global pooling works. convolutional neural network model and
how to use a pre-trained model for object
Convolutional Neural Networks detection.
Kangaroo Detection. Discover how to
ImageNet. Discover the ImageNet dataset develop, train, evaluate and use an object
and ILSVRC competition and the detection model to locate and detect
impressive results it has promoted. kangaroos in photographs.
Architectural Innovations. Discover the
key model architectural innovations such Face Recognition
as Inception and ResNet.
Code Architectures. Discover how to Face Detection. Discover the problem of
code key model architectural innovations face detection and how to use the MTCNN
from scratch. model to detect faces in photographs.
1×1 Convolutions. Discover the intuitions VGGFace2. Discover the top-performing
behind the 1×1 convolution and how to use VGGFace2 model from Oxford and how to
it to manage model complexity. use it for face verification and face
identification.
Pre-Trained Models. Discover the benefit FaceNet. Discover the top-performing
behind using pre-trained models and how FaceNet model from Google and how to
they can be used for transfer learning. use it for face verification and face
identification.

…so, is this book right for YOU?


Who Is This Book For?
Let’s make sure you are in the right place.

This book is for developers that know some applied machine learning and some deep learning.

Maybe you want or need to start using deep learning for visual recognition on your research project or on a
project at work. This book was written to help you do that quickly and efficiently by compressing years of
knowledge and experience into a laser-focused course of hands-on tutorials.

This guide was written in the top-down and results-first style that you’re used to from Machine Learning
Mastery.

The lessons in this book assume a few things about you.

You need to know: You do NOT need to be:

You need to know your way around basic You do not need to be a math wiz!
Python. You do not need to be a deep learning
You may know a little of basic modeling expert!
with scikit-learn. You do not need to be a master of
You may know a little of basic modeling computer vision!
with Keras.

…so what will YOU know after reading it?


About Your Learning Outcomes
This book will teach you how to get results.

After reading and working through this book,


you will know:
The promise of neural networks and deep How to develop, tune, evaluate, and make
learning methods in general for computer predictions with convolutional neural
vision problems. networks on entirely new datasets for
How to load and prepare image data, such image classification, such as satellite
as photographs, for modeling using best- photographs and photographs of pets.
of-breed Python libraries. How to use techniques such as pre-trained
How specialized layers in a convolutional models, transfer learning, and image
layer work, including 1D and 2D augmentation to accelerate and improve
convolutions, max and average pooling, model development.
and intuitions for the impact that each layer How to use pre-trained models and
has on input data. develop new models for object recognition
How to configure convolutional layers, tasks, such as object localization and
including aspects such as filter size, stride, object detection in photographs, using
and pooling. techniques like Mask R-CNN and
How key modeling innovations for YOLOv3.
convolutional neural networks work and How to use deep learning models for face
how to implement them from scratch, such recognition tasks, such as face
as VGG blocks, inception models, and identification and face verification in
ResNet modules. photographs, using techniques like
How to develop, tune, evaluate, and make Google’s FaceNet and Oxford’s
predictions with convolutional neural VGGFace2.
networks on standard benchmark
computer vision datasets for image
classification, such as Fashion MNIST and
CIFAR-10.

This book will NOT teach you how to be a research scientist nor all the theory behind why specific methods
work. For that, I would recommend good research papers and textbooks.

This new understanding of applied deep learning methods will impact your practice of working through
computer vision problems in the following ways:

You will be able to confidently load and prepare image data ready for modeling.
You will be able to develop effective convolutional neural network models quickly.
You will be able to effortlessly harness world-class pre-trained models on new problems.

This book is not a substitute for an undergraduate course in deep learning or computer vision, nor is it a
textbook for such courses, although it could be a useful complement. For a good list of top textbooks and
other resources, see the “Further Reading” section at the end of each tutorial lesson.

…so what is in the Ebook?


30 Step-by-Step Tutorials to Transform You
Into a Deep Learning Computer Vision Practitioner
This book was designed around major deep learning techniques that are directly relevant to computer
vision problems.

There are a lot of things you could learn about deep learning and computer vision, from theory to abstract
concepts to APIs. My goal is to take you straight to developing an intuition for the elements you must
understand with laser-focused tutorials.

The tutorials were designed to focus on how to get results with deep learning methods. As such, they will
give you the tools to both rapidly understand and apply each technique or operation. There is a mixture of
both tutorial lessons and projects to both introduce the methods and give plenty of examples and
opportunity to practice using them.

Each of the tutorials is designed to take you about one hour to read through and complete, excluding the
extensions and further reading.

You can choose to work through the lessons one per day, one per week, or at your own pace. I think
momentum is critically important, and this book is intended to be read and used, not to sit idle. I would
recommend picking a schedule and sticking to it.

The tutorials are divided into 7 parts; they are:

Part 1: Foundations. Discover a gentle introduction to computer vision, and the promise of deep
learning in the field of computer vision, as well as tutorials on how to get started with Keras.
Part 2: Data Preparation. Discover tutorials on how to load images, image datasets, and
techniques for scaling pixel data in order to make images ready for modeling.
Part 3: Convolutions and Pooling. Discover insights and intuitions for how convolutional neural
networks actually work, including convolutions, filter size, padding, and pooling.
Part 4: Convolutional Neural Networks. Discover the major model architectural innovations in
the development of convolutional neural networks and how to code each from scratch, including
VGG, Inception and ResNet
Part 5: Image Classification. Discover how to develop, tune, and evaluate deep convolutional
neural networks for image classification, including problems like Fashion MNIST and CIFAR-10
and entirely new datasets.
Part 6: Object Detection. Discover deep learning models for object detection such as Mask R-
CNN and YOLOv3 and how to both use pre-trained models and train models for new object
detection datasets.
Part 7: Face Recognition. Discover deep learning models for face recognition, including FaceNet
and VGGFace2, and how to use pre-trained models for face identification and face verification.

Table of Contents
Lessons Overview Ebook Table of Contents
Below is an overview of the step-by-step tutorial The screenshot below was taken from the PDF
lessons you will complete: Ebook.

Each lesson was designed to be completed in It provides you a full overview of the table of
about 30-to-60 minutes by the average developer. contents from the book.

Front Matter
I. Introduction

Part 1: Foundations
Lesson 01: Introduction to Computer Vision
Lesson 02: Promise of Deep Learning for
Computer Vision
Lesson 03: How to Develop Deep Learning
Models With Keras

Part 2: Image Data Preparation


Lesson 04: How to Load and Manipulate
Images with PIL/Pillow
Lesson 05: How to Manually Scale Image
Pixel Data
Lesson 06: How to Load and Manipulate
Images with Keras
Lesson 07: How to Scale Image Pixel Data
with Keras
Lesson 08: How to Load Large Datasets From
Directories with Keras
Lesson 09: How to Use Image Data
Augmentation in Keras

Part 3: Convolutions and Pooling


Lesson 010: How to Use Different Channel
Ordering Formats
Lesson 011: How Convolutional Layers Work
Lesson 012: How to Use Filter Size, Padding,
and Stride
Lesson 013: How Pooling Layers Work

Part 4: Convolutional Neural


Networks
Lesson 014: ImageNet, ILSVRC, and
Milestone Architectures
Lesson 015: How Milestone Model
Architectural Innovations Work
Lesson 016: How to Implement Model
Architectural Innovations
Lesson 017: How to Use 1×1 Convolutions to
Manage Model Complexity
Lesson 018: How to Use Pre-Trained Models
and Transfer Learning

Part 5: Image Classification


Lesson 19: How to Classify Black and White
Photos of Clothing
Lesson 20: How to Classify Small Photos of
Objects
Lesson 21: How to Classify Photographs of
Dogs and Cats
Lesson 22: How to Label Satellite
Photographs of the Amazon Rainforest

Part 6: Object Detection


Lesson 23: Deep Learning for Object
Recognition
Lesson 24: How to Perform Object Detection
with YOLOv3
Lesson 25: How to Perform Object Detection
with Mask R-CNN
Lesson 26: How to Develop a New Object
Detection Model

Part 7: Face Recognition


Lesson 27: Deep Learning for Face
Recognition
Lesson 28: How to Detect Faces in
Photographs
Lesson 29: How to Perform Face
Identification and Verification with VGGFace2
Lesson 30: How to Perform Face
Classification with FaceNet

Appendix
Appendix A: Getting Help Deep Learning for Computer Vision Table of Contents

Appendix B: How to Set Up Your Workstation


Appendix C: How to Setup Amazon EC2 for Targeted Outcomes
Deep Learning on GPUs
Each part targets a specific learning outcome, and
so does each tutorial within each part.
Backmatter
I. Conclusions This acts as a filter to ensure you are only focused
on the things you need to know to get to a specific
result and do not get bogged down in the math or
near-infinite number of digressions.

Learn by Doing
The tutorials were not designed to teach you
everything there is to know about each of the
methods.

They were designed to give you an understanding


of how they work, how to use them, and how to
interpret the results the fastest way I know how: to
learn by doing.

Take a Sneak Peek Inside The Ebook


Click an image to Enlarge.

Sample Page 3 from Deep Learning for


Computer Vision
…you’ll also get 158 fully working Python scripts
BONUS: Deep Learning Computer Vision Code Recipes
Sample Code Recipes
Each recipe presented in the book is standalone,
meaning that you can copy and paste it into your
project and use it immediately.

You get one Python script (.py) for each


example provided in the book.

This means that you can follow along and compare


your answers to a known working implementation
of each example in the provided Python files.

This helps a lot to speed up your progress when


working through the details of a specific task, such
as:

Preparing Data.
Transforming Data.
Defining Models.
Fitting Models.
Evaluating Models.
Making Predictions.
Image Classification.
Object Localization.
Object Detection.
Face Identification.
Face Verification.
Face Classification.

The provided code was developed in a text editor


and intended to be run on the command line. No
special IDE or notebooks are required.

All code examples were tested with Python 3 and


Keras 2.
All code examples will run on modest and modern
computer hardware and were executed on a CPU
and GPU. A GPU is not required, but will
accelerate the execution of some of the larger
examples.

Python Technical Details


This section provides some technical details about
the code provided with the book.

Python Version: You can use Python 3.


SciPy: You will use NumPy and scikit-learn.
Keras: You will need Keras version 2 with
either a Theano or TensorFlow backend.
Operating System: You can use Windows,
Linux, or Mac OS X.
Hardware: A standard modern workstation will
do, although a GPU is recommended but not
required for some tutorials.
Editor: You can use a text editor and run the
examples from the command line.

Don’t have a Python Environment


Set Up?
No problem!

The appendix contains step-by-step tutorials


showing you exactly how to set up a Python deep
learning environment, as well as how to use cheap
cloud computing to fit models much faster using
GPUs.

Deep Learning for Computer Vision Code Recipes


About The Author
Hi, I'm Jason Brownlee. I run this site and I wrote and published this
book.

I live in Australia with my wife and sons. I love to read books, write
tutorials, and develop systems.

I have a computer science and software engineering background as


well as Masters and PhD degrees in Artificial Intelligence with a focus
on stochastic optimization.

I've written books on algorithms, won and ranked well in competitions,


consulted for startups, and spent years in industry. (Yes, I have spend
a long time building and maintaining REAL operational systems!)

I get a lot of satisfaction helping developers get started and get really
good at applied machine learning.

I teach an unconventional top-down and results-first approach to machine learning where we start by
working through tutorials and problems, then later wade into theory as we need it.

I'm here to help if you ever have any questions. I want you to be awesome at machine learning.

Download Your Sample Chapter


Do you want to take a closer look at the book? Download a free sample
chapter PDF.

Enter your email address and your sample chapter will be sent to your inbox.

>> Click Here to Download Your Sample Chapter


Check Out What Customers Are Saying:
Clear writing, interesting topics, and An essential book to start with deep
very practical. learning, specially for the code
explanation and its implementation.
Matthew Teow The author of this book PhD Jason
Developer
Brownlee did a great work in taking
the advance topic that Deep Learning
is and make it easy and achievable. If
I could give more stars to this book I would.

Kleyer Sosa Mazier


Quick paced, you have to read it ML Practitioner
closely, every sentence gives new
information. Great if you have already
read about CNN’s and CV and want
to turn theory into practice. Some Loving it. Colleagues of mine
prior knowledge helps you also to recommended your books and I’ve
understand the introductory / never been disappointed, as a
theoretical lessons which are really condensed (as you say developer branching out into machine
it is not intended as a textbook). The lessons are very learning I can see that you
structured and relatively short, so you can easily complete understand your target audience quite
a lesson in an hour or so. well. Very cool to see these new
topics on computer vision. Thanks Jason!
Peter Marks
Practitioner
Jarrett Lubky
Developer

You're Not Alone in Choosing Machine Learning Mastery


Trusted by Over 53,938 Practitioners
...including employees from companies like:
...students and faculty from universities like:

and many thousands more...

Absolutely No Risk with...


100% Money Back Guarantee
Plus, as you should expect of any great product on the market, every Machine Learning Mastery Ebook
comes with the surest sign of confidence: my gold-standard 100% money-back guarantee.

100% Money-Back Guarantee


If you're not happy with your purchase of any of the Machine Learning Mastery Ebooks,
just email me within 90 days of buying, and I'll give you your money back ASAP.

No waiting. No questions asked. No risk.


…it’s time to take the next step.
Bring Deep Learning to Your Computer Vision Projects
NOW!
Choose Your Package:

Basic Package Deep Learning Super Bundle


You will get the Ebook: Bundle BEST VALUE

Deep Learning for TOP SELLER You get the complete 18-
Computer Vision
Ebook set:
You get the 7-Ebook set:
(including bonus source
1. Statistics Methods for
code) 1. Deep Learning With
Machine Learning
Python
2. Linear Algebra for
2. Deep Learning for
BUY NOW Machine Learning
Computer Vision
3. Probability for
FOR $37 3. Deep Learning for
Machine Learning
Natural Language
4. Master Machine
Processing
Learning Algorithms
4. Deep Learning for
(a great deal!) 5. ML Algorithms From
Time Series
Scratch
Forecasting
6. Machine Learning
5. Generative
Mastery With Weka
Adversarial Networks
7. Machine Learning
with Python
Mastery With R
6. Long Short-Term
8. Machine Learning
Memory Networks
Mastery With Python
with Python
9. Imbalanced
7. Better Deep Learning
Classification
(includes all bonus source With Python
code) 10. Time Series
Forecasting With
Python
BUY NOW 11. Deep Learning With
FOR $187 Python
12. Deep Learning for CV
13. Deep Learning for
NLP
That's $269.00 of Value! 14. Deep Learning for
Time Series
(You get a 30.48% Forecasting
discount) 15. Generative
Adversarial Networks
with Python
16. Better Deep Learning
17. LSTM Networks With
Python
18. XGBoost With Python

(includes all bonus source


code)

BUY NOW
FOR $447

That's $646.00 of Value!

(You save a massive


$199.00)

All prices are in US Dollars (USD).

(1) Click the button. (2) Enter your details. (3) Download immediately.

Secure Payment Processing With SSL Encryption


Are you a Student, Teacher or Retiree? Do you have any Questions?
Contact me about a discount. See the FAQ.

What Are Skills in Machine Learning Worth?

Your boss asks you:

Hey, can you build a predictive model for this?

Imagine you had the skills and confidence to say:


"YES!"
...and follow through.
I have been there. It feels great!

How much is that worth to you?


The industry is demanding skills in machine learning.
The market wants people that can deliver results, not write academic papers.

Business knows what these skills are worth and are paying sky-high starting salaries.

A Data Scientists Salary Begins at:


$100,000 to $150,000.
A Machine Learning Engineers Salary is Even Higher.

What Are Your Alternatives?


You made it this far.
You're ready to take action.

But, what are your alternatives? What options are there?

(1) A Theoretical Textbook for $100+


...it's boring, math-heavy and you'll probably never finish it.

(2) An On-site Boot Camp for $10,000+


...it's full of young kids, you must travel and it can take months.
(3) A Higher Degree for $100,000+
...it's expensive, takes years, and you'll be an academic.

OR...

For the Hands-On Skills You Get...


And the Speed of Results You See...
And the Low Price You Pay...

Machine Learning Mastery Ebooks are


Amazing Value!
And they work. That's why I offer the money-back guarantee.

You're A Professional

The field moves quickly, Bottom-up is Slow and Frustrating,


...how long can you wait? ...don't you want a faster way?
You think you have all the time in the world, but... Can you really go on another day, week or month...

New methods are devised and algorithms Scraping ideas and code from incomplete
change. posts.
New books get released and prices increase. Skimming theory and insight from short
New graduates come along and jobs get filled. videos.
Parsing Greek letters from academic
Right Now is the Best Time to make your start. textbooks.

Targeted Training is your Shortest Path to a


result.

Professionals Stay On Top Of Their Field


Get The Training You Need!
You don't want to fall behind or miss the opportunity.

Frequently Asked Questions


Customer Questions (75)

Can I be a reseller for your books? a


Can I exchange a book in a bundle? a
Can I get a customized bundle of books (a la carte)? a
Can I get a hard copy of your book? a
Can I get a purchase order? a
Can I get a refund for one book in a bundle? a
Can I get a refund? a
Can I get a sample of the book? a
Can I get a tax invoice for my purchase? a
Can I get an evaluation copy of a book? a
Can I get Kindle or ePub versions of the books? a
Can I get the ISBN for your book? a
Can I get your books for free? a
Can I have a discount? a
Can I have an RFI / RFP / RFT / RFQ? a
Can I pay via debit card? a
Can I pay via WeChat Pay or Alipay? a
Can I print the PDF for my personal use? a
Can I see the table of contents? a
Can I send you a cheque, money order, western union, etc? a
Can I upgrade to the super bundle later? a
Can I use your material to teach my lecture or course? a
Can I white-label your books or content? a
Can your books be purchased elsewhere online or offline? a
Do your books provide exercises or assignments? a
Do I get a certificate of completion? a
Do I get new books for free if I buy the super bundle? a
Do I need to be a good programmer? a
Do you cover the theory and derivations? a
Do you have any sales, deals, or coupons? a
Do you have videos? a
Do you offer a guarantee? a
Do you ship to my country? a
Do you support TensorFlow 2? a
Does the LSTM book cover multivariate time series? a
How are the mini-courses different from the books? a
How are the two algorithm books different? a
How are your books different from the blog? a
How are your books different to other books on machine learning? a
How do I buy a book? a
How do I convert my currency to US dollars? a
How do I download my purchase? a
How do I get access to the bonuses? a
How do I use a discount coupon? a
How long do books take to ship? a
How long will a book take me to finish? a
How long will it take to get the book? a
In what order should I read your books? a
Is there a license for libraries? a
Is there a team or company license? a
Is there any digital rights management (DRM)? a
What about delivery? a
What book should I start with? a
What books and bundles do you sell? a
What books are you writing next? a
What books have I already purchased? a
What currencies do you support? a
What if my download link expires? a
What is the difference between the LSTM and Deep Learning books? a
What is the difference between the LSTM and Deep Learning for Time Series a
books?

What is the difference between the LSTM and the NLP books? a
What is your business or corporate tax number (e.g. ABN, ACN, VAT, etc.) a
What operating systems are supported in the books? a
What programming language is used in “Master Machine Learning Algorithms”? a
What software do you use to write your books? a
What version of Python is used? a
Where is my purchase? a
Why are some of the book chapters also on the blog? a
Why are your books so expensive? a
Why aren’t your books on Amazon? a
Why doesn’t my payment work? a
Why not give all of your books away for free? a
Will I get free updates to the books? a
Will you help me if I have questions about the book? a
Will your books get me a job? a

Do you have another question?


Please contact me.

© 2020 Machine Learning Mastery Pty. Ltd. All Rights Reserved.


Address: PO Box 206, Vermont Victoria 3133, Australia. | ACN: 626 223 336.
LinkedIn | Twitter | Facebook | Newsletter | RSS

Privacy | Disclaimer | Terms | Contact | Sitemap | Search

You might also like