SlideShare une entreprise Scribd logo
1  sur  41
Deep Learning Using TensorFlow
Agenda
▪ Why Artificial Intelligence?
▪ What Is Artificial Intelligence?
▪ Subsets Of Artificial Intelligence
▪ What Is Machine Learning?
▪ Limitations Of Machine Learning
▪ What Is Deep Learning And How It Works?
▪ Single Layer Perceptron
▪ Limitations Of Single Layer Perceptron
▪ Multi Layer Perceptron
▪ Course Outline
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Artificial Intelligence?
Let’s first understand why we need Artificial Intelligence.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Artificial Intelligence?
Let’s understand this with an example:
If a car exceeds the speed limit, then for a human to monitor and note down all the
numbers is not possible.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Artificial Intelligence?
In order to solve it, we can use a machine to capture the
number plate picture and covert it into a text format
Convert the picture into text
UK PL8TE
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Artificial Intelligence?
Now is the time to understand what exactly is Artificial Intelligence.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Artificial Intelligence?
Artificial Intelligence is the capability of a machine to imitate
intelligent human behavior.
AI is accomplished by studying how
human brain thinks, and how humans
learn, decide, and work while trying to
solve a problem
Outcomes of this study is used as a
basis of developing intelligent software
and systems.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Subsets Of Artificial Intelligence
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Subsets Of Artificial Intelligence
Artificial Intelligence
Machine Learning
Deep Learning Deep Learning is a subset of
Machine Learning
Machine Learning is a subset of
AI
Deep Learning uses
neural networks to
simulate human like
decision making
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Machine Learning
Let’s understand what is Machine Learning.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Machine Learning
▪ Machine Learning is a type of artificial intelligence (AI) that provide computers with the ability to learn
without being explicitly programmed.
Problem Statement: Determine the species of the flower
Learn from the dataset
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Machine Learning
▪ Machine Learning is a type of artificial intelligence (AI) that provide computers with the ability to learn
without being explicitly programmed.
Problem Statement: Determine the species of the flower
New Input
Sepal length, Sepal width,
Petal Length, Petal Width
Learn from the dataset
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Limitations Of Machine Learning
Let’s understand, even when Machine Learning is present why we need Deep Learning.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Limitations Of Machine Learning
Cannot solve crucial AI problems like NLP,
Image recognition etc.
Are not useful while working with high dimensional data,
that is where we have large number of inputs and outputs
Machine
Learning
Limitations Of Machine Learning
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Limitations Of Machine Learning
One of the big challenges with traditional Machine Learning models is a process called feature extraction. For
complex problems such as object recognition or handwriting recognition, this is a huge challenge.
Deep Learning To The Rescue
The idea behind Deep Learning is
to build learning algorithms that
mimic brain.
Deep Learning models are capable to focus on the
right features by themselves, requiring little guidance
from the programmer.
These models also partially solve the dimensionality
problem.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Lets Take a Look at
Deep Learning Applications
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Applications of Deep Learning
Some amazing and recent applications of Deep Learning are:
• Automatic Machine Translation.
• Object Classification in Photographs.
• Automatic Handwriting Generation.
• Character Text Generation.
• Image Caption Generation.
• Colorization of Black and White Images.
• Automatic Game Playing.
Face recognition
Sara Jessi Amy Priya Adam
EmmaAndrewJohn
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Applications of Deep Learning - Google Lens
▪ Google Lens is a set of vision-based computing
capabilities that allows your smartphone to
understand what's going on in a photo, video or
live feed.
▪ For instance, point your phone at a flower and
Google Lens will tell you, on the screen, which
type of flower it is.
▪ You can aim the camera at a restaurant sign to
see reviews and other information to pop up.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Applications of Deep Learning – Machine Translation
Automatic Machine Translation:
• This a task where you are given words
in some language and you have to
translate the words to the desired
language say English.
• This kind of translation is a classical
example of Image recognition.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Applications of Deep Learning – Image Colorization
Automatic Colorization of Black and White
Images:
• Image colorization is the problem of
adding colour to black and white
photographs.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
How Deep Learning Works?
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
How Deep Learning Works?
Deep learning is a form of machine learning that uses a model of computing that's very much inspired by the
structure of the brain, so lets understand that first.
Neuron
Dendrite: Receives signals from
other neurons
Cell Body: Sums all the inputs
Axon: It is used to transmit signals
to the other cells
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Perceptron Learning Algorithm
Let’s begin by understanding an artificial neuron called a perceptron.
X1
X2
X3
Xn
W1
W2
W3
Wn
Transfer
Function
Activation
Function
Schematic for a neuron in a neural net
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Applications
It is used to classify any linearly separable set of inputs.
Error = 2 Error = 1 Error = 0
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Perceptron Learning Algorithm
Initialize the weights and
threshold
1
Wj – initial Weight
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Perceptron Learning Algorithm
Provide the input and
calculate the output
Initialize the weights and
threshold
1 2
X – Input
Y - Output
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Perceptron Learning Algorithm
Provide the input and
calculate the output
Initialize the weights and
threshold
Update the weights Repeat step 2 and 3
1 2 3 4
Wj (t+1) = Wj (t) + n (d-y) x
Wj (t+1) – Updated Weight
Wj (t) – Old Weight
d – Desired Output
y – Actual Output
x - Input
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Example Of Perceptron
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Perceptron Example
It can be used to implement Logic Gates.
AND
X1 X2 Y
0 0 0
0 1 0
1 0 0
1 1 1
t = 1.5
W = 1
W = 1
X1 X2
0 0
0 1
1 0
1 1
1
0 1
X1
X2
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Limitations Of Single Layer Perceptron
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Limitations Of Single Layer Perceptron
XOR X1 X2 Y
0 0 0
0 1 1
1 0 1
1 1 0
 If the cases are not linearly separable, the learning process of perceptron will never reach a
point where all points are classified properly.
 One example for non linearly separable cases is the XOR problem.
For Solving this problem, a multilayer perceptron
with backpropagation can be used
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Multi-Layer Perceptron
A Multi-layer Perceptron has the same structure of a single layer perceptron but with one or more hidden
layers.
Summation:
𝑺 = 𝑤𝑖 ∗ 𝑥1
𝑖 = 1
𝑛
Transformation:
Input Layer
Hidden Layer 1
Hidden Layer 2
Output Layer
Inputs Output
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Multi Layer Perceptron Use-Case
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Multi Layer Perceptron – Use Case
We will use the MNIST dataset. This dataset contains handwritten images of numbers from 0 -9. This is
how the dataset looks like:
60000 Training Samples
10000 Testing Samples
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Multi Layer Perceptron – Use Case
Input Image
(28x28)
Filter Weights
(5x5 pixels)
(14x14 pixels)
(16 channels)
(7x7 pixels)
(36 channels)
Filter-Weights
(5x5 pixels)
16 of these …
0.0
0.0
0.1
0.0
0.0
0.1
0.0
0.8
0.0
0.0
0
1
2
3
4
5
6
7
8
9
Fully-Connected
Layer
Output
Layer Class
Convolutional Layer 1
Convolutional Layer 2
(128 features) (10 features)
We will take the same MNIST dataset. By using Multilayer Perceptron the efficiency can be increased to
99%
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Course Outline
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Module
1
Module
2
Module
3
Module
4
Module
5
Module
6
Module
7
Module
8
Course Outline
Understanding Deep Learning
Understanding Neural Networks
Master Deep Networks
Deepdive into TensorFlow
Convolutional Neural Networks
Recurrent Neural Networks
RBM and Autoencoders
Certification Project
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Session In A Minute
What Is Artificial Intelligence? What Is Machine Learning? What Is Deep Learning?
Deep Learning Applications How Deep Learning Works? Single And Multi Layer Perceptron
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning with TensorFlow
T e n s o r F l o w W I T H E D U R E K A
Go to www.edureka.co/ai-deep-learning-with-tensorflow
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Deep Learning Using TensorFlow | TensorFlow Tutorial | AI & Deep Learning Training | Edureka

Contenu connexe

Tendances

Deep learning - A Visual Introduction
Deep learning - A Visual IntroductionDeep learning - A Visual Introduction
Deep learning - A Visual Introduction
Lukas Masuch
 
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
Simplilearn
 

Tendances (20)

Deep Learning Jump Start
Deep Learning Jump StartDeep Learning Jump Start
Deep Learning Jump Start
 
Deep learning
Deep learningDeep learning
Deep learning
 
Notes from Coursera Deep Learning courses by Andrew Ng
Notes from Coursera Deep Learning courses by Andrew NgNotes from Coursera Deep Learning courses by Andrew Ng
Notes from Coursera Deep Learning courses by Andrew Ng
 
Deep Learning - Overview of my work II
Deep Learning - Overview of my work IIDeep Learning - Overview of my work II
Deep Learning - Overview of my work II
 
Andrew Ng, Chief Scientist at Baidu
Andrew Ng, Chief Scientist at BaiduAndrew Ng, Chief Scientist at Baidu
Andrew Ng, Chief Scientist at Baidu
 
Introduction to deep learning
Introduction to deep learningIntroduction to deep learning
Introduction to deep learning
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep Learning
 
Deep learning - A Visual Introduction
Deep learning - A Visual IntroductionDeep learning - A Visual Introduction
Deep learning - A Visual Introduction
 
Deep learning short introduction
Deep learning short introductionDeep learning short introduction
Deep learning short introduction
 
From Conventional Machine Learning to Deep Learning and Beyond.pptx
From Conventional Machine Learning to Deep Learning and Beyond.pptxFrom Conventional Machine Learning to Deep Learning and Beyond.pptx
From Conventional Machine Learning to Deep Learning and Beyond.pptx
 
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
What Is Deep Learning? | Introduction to Deep Learning | Deep Learning Tutori...
 
Deep Learning Class #0 - You Can Do It
Deep Learning Class #0 - You Can Do ItDeep Learning Class #0 - You Can Do It
Deep Learning Class #0 - You Can Do It
 
Lecture11 - neural networks
Lecture11 - neural networksLecture11 - neural networks
Lecture11 - neural networks
 
Deep learning presentation
Deep learning presentationDeep learning presentation
Deep learning presentation
 
Deep Neural Networks 
that talk (Back)… with style
Deep Neural Networks 
that talk (Back)… with styleDeep Neural Networks 
that talk (Back)… with style
Deep Neural Networks 
that talk (Back)… with style
 
2019 4-nn-and-dl-tao wang@unc-v2
2019 4-nn-and-dl-tao wang@unc-v22019 4-nn-and-dl-tao wang@unc-v2
2019 4-nn-and-dl-tao wang@unc-v2
 
Introduction to Deep learning
Introduction to Deep learningIntroduction to Deep learning
Introduction to Deep learning
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep Learning
 
Deep learning
Deep learningDeep learning
Deep learning
 
Deep Learning Tutorial
Deep Learning TutorialDeep Learning Tutorial
Deep Learning Tutorial
 

Similaire à Deep Learning Using TensorFlow | TensorFlow Tutorial | AI & Deep Learning Training | Edureka

Similaire à Deep Learning Using TensorFlow | TensorFlow Tutorial | AI & Deep Learning Training | Edureka (20)

Introduction to Artificial Intelligence | AI using Deep Learning | Edureka
Introduction to Artificial Intelligence | AI using Deep Learning | EdurekaIntroduction to Artificial Intelligence | AI using Deep Learning | Edureka
Introduction to Artificial Intelligence | AI using Deep Learning | Edureka
 
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
Artificial Neural Network Tutorial | Deep Learning With Neural Networks | Edu...
 
Deep Learning Fundamentals
Deep Learning FundamentalsDeep Learning Fundamentals
Deep Learning Fundamentals
 
Introduction to Machine Learning, Deep Learning and MXNet
Introduction to Machine Learning, Deep Learning and MXNetIntroduction to Machine Learning, Deep Learning and MXNet
Introduction to Machine Learning, Deep Learning and MXNet
 
Deep Learning Workshop
Deep Learning WorkshopDeep Learning Workshop
Deep Learning Workshop
 
What is deep learning (and why you should care) - Talk at SJSU Oct 2018
What is deep learning (and why you should care) - Talk at SJSU Oct 2018What is deep learning (and why you should care) - Talk at SJSU Oct 2018
What is deep learning (and why you should care) - Talk at SJSU Oct 2018
 
Automatski - How We Reinvented Machine Learning, Solved NP-Complete ML Proble...
Automatski - How We Reinvented Machine Learning, Solved NP-Complete ML Proble...Automatski - How We Reinvented Machine Learning, Solved NP-Complete ML Proble...
Automatski - How We Reinvented Machine Learning, Solved NP-Complete ML Proble...
 
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
 
Emotion Recognition in Images
Emotion Recognition in ImagesEmotion Recognition in Images
Emotion Recognition in Images
 
Moving Forward with AI
Moving Forward with AIMoving Forward with AI
Moving Forward with AI
 
Python For Deep Learning - I | Python Basics | Python Tutorial | Python Train...
Python For Deep Learning - I | Python Basics | Python Tutorial | Python Train...Python For Deep Learning - I | Python Basics | Python Tutorial | Python Train...
Python For Deep Learning - I | Python Basics | Python Tutorial | Python Train...
 
AIOUG -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA'...
AIOUG -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA'...AIOUG -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA'...
AIOUG -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA'...
 
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
 
LAD -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA's ...
LAD -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA's ...LAD -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA's ...
LAD -GroundBreakers-Jul 2019 - Introduction to Machine Learning - From DBA's ...
 
MCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and GluonMCL310_Building Deep Learning Applications with Apache MXNet and Gluon
MCL310_Building Deep Learning Applications with Apache MXNet and Gluon
 
GPSBUS201-GPS Demystifying Artificial Intelligence
GPSBUS201-GPS Demystifying Artificial IntelligenceGPSBUS201-GPS Demystifying Artificial Intelligence
GPSBUS201-GPS Demystifying Artificial Intelligence
 
Deep Learning for Developers: An Introduction, Featuring Samsung SDS (AIM301-...
Deep Learning for Developers: An Introduction, Featuring Samsung SDS (AIM301-...Deep Learning for Developers: An Introduction, Featuring Samsung SDS (AIM301-...
Deep Learning for Developers: An Introduction, Featuring Samsung SDS (AIM301-...
 
[REPEAT] Deep Learning for Developers: An Introduction, Featuring Samsung SDS...
[REPEAT] Deep Learning for Developers: An Introduction, Featuring Samsung SDS...[REPEAT] Deep Learning for Developers: An Introduction, Featuring Samsung SDS...
[REPEAT] Deep Learning for Developers: An Introduction, Featuring Samsung SDS...
 
Lect 8 learning types (M.L.).pdf
Lect 8 learning types (M.L.).pdfLect 8 learning types (M.L.).pdf
Lect 8 learning types (M.L.).pdf
 
Jon Epstein - LAC 2017 - Disruptive technologies: AI and the future of market...
Jon Epstein - LAC 2017 - Disruptive technologies: AI and the future of market...Jon Epstein - LAC 2017 - Disruptive technologies: AI and the future of market...
Jon Epstein - LAC 2017 - Disruptive technologies: AI and the future of market...
 

Plus de Edureka!

Plus de Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Dernier

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Dernier (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 

Deep Learning Using TensorFlow | TensorFlow Tutorial | AI & Deep Learning Training | Edureka

  • 1. Deep Learning Using TensorFlow
  • 2. Agenda ▪ Why Artificial Intelligence? ▪ What Is Artificial Intelligence? ▪ Subsets Of Artificial Intelligence ▪ What Is Machine Learning? ▪ Limitations Of Machine Learning ▪ What Is Deep Learning And How It Works? ▪ Single Layer Perceptron ▪ Limitations Of Single Layer Perceptron ▪ Multi Layer Perceptron ▪ Course Outline
  • 3. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Artificial Intelligence? Let’s first understand why we need Artificial Intelligence.
  • 4. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Artificial Intelligence? Let’s understand this with an example: If a car exceeds the speed limit, then for a human to monitor and note down all the numbers is not possible.
  • 5. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Artificial Intelligence? In order to solve it, we can use a machine to capture the number plate picture and covert it into a text format Convert the picture into text UK PL8TE
  • 6. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is Artificial Intelligence? Now is the time to understand what exactly is Artificial Intelligence.
  • 7. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is Artificial Intelligence? Artificial Intelligence is the capability of a machine to imitate intelligent human behavior. AI is accomplished by studying how human brain thinks, and how humans learn, decide, and work while trying to solve a problem Outcomes of this study is used as a basis of developing intelligent software and systems.
  • 8. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Subsets Of Artificial Intelligence
  • 9. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Subsets Of Artificial Intelligence Artificial Intelligence Machine Learning Deep Learning Deep Learning is a subset of Machine Learning Machine Learning is a subset of AI Deep Learning uses neural networks to simulate human like decision making
  • 10. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Machine Learning Let’s understand what is Machine Learning.
  • 11. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Machine Learning ▪ Machine Learning is a type of artificial intelligence (AI) that provide computers with the ability to learn without being explicitly programmed. Problem Statement: Determine the species of the flower Learn from the dataset
  • 12. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Machine Learning ▪ Machine Learning is a type of artificial intelligence (AI) that provide computers with the ability to learn without being explicitly programmed. Problem Statement: Determine the species of the flower New Input Sepal length, Sepal width, Petal Length, Petal Width Learn from the dataset
  • 13. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Limitations Of Machine Learning Let’s understand, even when Machine Learning is present why we need Deep Learning.
  • 14. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Limitations Of Machine Learning Cannot solve crucial AI problems like NLP, Image recognition etc. Are not useful while working with high dimensional data, that is where we have large number of inputs and outputs Machine Learning Limitations Of Machine Learning
  • 15. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Limitations Of Machine Learning One of the big challenges with traditional Machine Learning models is a process called feature extraction. For complex problems such as object recognition or handwriting recognition, this is a huge challenge. Deep Learning To The Rescue The idea behind Deep Learning is to build learning algorithms that mimic brain. Deep Learning models are capable to focus on the right features by themselves, requiring little guidance from the programmer. These models also partially solve the dimensionality problem.
  • 16. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Lets Take a Look at Deep Learning Applications
  • 17. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Applications of Deep Learning Some amazing and recent applications of Deep Learning are: • Automatic Machine Translation. • Object Classification in Photographs. • Automatic Handwriting Generation. • Character Text Generation. • Image Caption Generation. • Colorization of Black and White Images. • Automatic Game Playing. Face recognition Sara Jessi Amy Priya Adam EmmaAndrewJohn
  • 18. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Applications of Deep Learning - Google Lens ▪ Google Lens is a set of vision-based computing capabilities that allows your smartphone to understand what's going on in a photo, video or live feed. ▪ For instance, point your phone at a flower and Google Lens will tell you, on the screen, which type of flower it is. ▪ You can aim the camera at a restaurant sign to see reviews and other information to pop up.
  • 19. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Applications of Deep Learning – Machine Translation Automatic Machine Translation: • This a task where you are given words in some language and you have to translate the words to the desired language say English. • This kind of translation is a classical example of Image recognition.
  • 20. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Applications of Deep Learning – Image Colorization Automatic Colorization of Black and White Images: • Image colorization is the problem of adding colour to black and white photographs.
  • 21. Copyright © 2017, edureka and/or its affiliates. All rights reserved. How Deep Learning Works?
  • 22. Copyright © 2017, edureka and/or its affiliates. All rights reserved. How Deep Learning Works? Deep learning is a form of machine learning that uses a model of computing that's very much inspired by the structure of the brain, so lets understand that first. Neuron Dendrite: Receives signals from other neurons Cell Body: Sums all the inputs Axon: It is used to transmit signals to the other cells
  • 23. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Perceptron Learning Algorithm Let’s begin by understanding an artificial neuron called a perceptron. X1 X2 X3 Xn W1 W2 W3 Wn Transfer Function Activation Function Schematic for a neuron in a neural net
  • 24. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Applications It is used to classify any linearly separable set of inputs. Error = 2 Error = 1 Error = 0
  • 25. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Perceptron Learning Algorithm Initialize the weights and threshold 1 Wj – initial Weight
  • 26. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Perceptron Learning Algorithm Provide the input and calculate the output Initialize the weights and threshold 1 2 X – Input Y - Output
  • 27. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Perceptron Learning Algorithm Provide the input and calculate the output Initialize the weights and threshold Update the weights Repeat step 2 and 3 1 2 3 4 Wj (t+1) = Wj (t) + n (d-y) x Wj (t+1) – Updated Weight Wj (t) – Old Weight d – Desired Output y – Actual Output x - Input
  • 28. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Example Of Perceptron
  • 29. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Perceptron Example It can be used to implement Logic Gates. AND X1 X2 Y 0 0 0 0 1 0 1 0 0 1 1 1 t = 1.5 W = 1 W = 1 X1 X2 0 0 0 1 1 0 1 1 1 0 1 X1 X2
  • 30. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Limitations Of Single Layer Perceptron
  • 31. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Limitations Of Single Layer Perceptron XOR X1 X2 Y 0 0 0 0 1 1 1 0 1 1 1 0  If the cases are not linearly separable, the learning process of perceptron will never reach a point where all points are classified properly.  One example for non linearly separable cases is the XOR problem. For Solving this problem, a multilayer perceptron with backpropagation can be used
  • 32. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Multi-Layer Perceptron A Multi-layer Perceptron has the same structure of a single layer perceptron but with one or more hidden layers. Summation: 𝑺 = 𝑤𝑖 ∗ 𝑥1 𝑖 = 1 𝑛 Transformation: Input Layer Hidden Layer 1 Hidden Layer 2 Output Layer Inputs Output
  • 33. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Multi Layer Perceptron Use-Case
  • 34. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Multi Layer Perceptron – Use Case We will use the MNIST dataset. This dataset contains handwritten images of numbers from 0 -9. This is how the dataset looks like: 60000 Training Samples 10000 Testing Samples
  • 35. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Multi Layer Perceptron – Use Case Input Image (28x28) Filter Weights (5x5 pixels) (14x14 pixels) (16 channels) (7x7 pixels) (36 channels) Filter-Weights (5x5 pixels) 16 of these … 0.0 0.0 0.1 0.0 0.0 0.1 0.0 0.8 0.0 0.0 0 1 2 3 4 5 6 7 8 9 Fully-Connected Layer Output Layer Class Convolutional Layer 1 Convolutional Layer 2 (128 features) (10 features) We will take the same MNIST dataset. By using Multilayer Perceptron the efficiency can be increased to 99%
  • 36. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Course Outline
  • 37. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Module 1 Module 2 Module 3 Module 4 Module 5 Module 6 Module 7 Module 8 Course Outline Understanding Deep Learning Understanding Neural Networks Master Deep Networks Deepdive into TensorFlow Convolutional Neural Networks Recurrent Neural Networks RBM and Autoencoders Certification Project
  • 38. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Session In A Minute What Is Artificial Intelligence? What Is Machine Learning? What Is Deep Learning? Deep Learning Applications How Deep Learning Works? Single And Multi Layer Perceptron
  • 39. Copyright © 2017, edureka and/or its affiliates. All rights reserved. AI & Deep Learning with TensorFlow T e n s o r F l o w W I T H E D U R E K A Go to www.edureka.co/ai-deep-learning-with-tensorflow
  • 40. Copyright © 2017, edureka and/or its affiliates. All rights reserved.