SlideShare a Scribd company logo
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Agenda
What is Keras?
Contributors for Keras
Keras Models
Implementing a Neural Network
Use-Case
Summary
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Keras?
Official high-level API of TensorFlow!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
What Is Keras?
Keras - Modular
‱ Building models is as simple
as stacking layers and
connecting graphs.
Open Source
‱ Actively developed by contributors across
the world!
‱ Good amount of documentation
Deep Learning Library
‱ High-level Neural Network API
‱ Runs on top of TensorFlow,
Theano or CNTK.
High Performance
‱ High performing API used to
specify and train differentiable
programs.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Who Makes Keras?
Who are the contributors and backers?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Who Makes Keras?
4800+ Contributors
250,000
Keras developers
> 2x
Year-on-year growth
Start-ups
Good amount of traction
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Who Uses Keras?
Let’s check out the industry traction!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Industry Traction
And more..!
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
What Makes Keras Special?
Highlights from one of the top Deep Learning libraries!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
What Makes Keras Special?
Large adoption in the industry
Multi-backend, multi-platform
Focus on user experience
Research community4
Easy to grasp all concepts5
Fast prototyping6
Runs seamlessly on CPU and GPU7
Freedom to design any architecture8
Simple to get started9
Easy production of models10
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Keras User Experience
API Designed for Humans
‱ Keras follows best practices for
reducing cognitive load
‱ Offers consistent and simple APIs
Not Designed for Machines
‱ Minimizes number of user actions required
for common use cases
‱ Provides clear feedback upon user error
Easy to Learn & Easy to Use
‱ More productive
‱ Try more ideas than your competition
‱ Helps you win competitions
High Flexibility
‱ Keras integrates with lower-level
Deep Learning languages like
TensorFlow
‱ Implement anything which was
built in base language.
1
3
2
4
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Multi-Backend & Multi-Platform
01 02 03
Development
Develop in Python, R
Run the code with:
‱ TensorFlow
‱ CNTK
‱ Theano
‱ MXNet
‱ CPU
‱ NVIDIA GPU
‱ AMD GPU
‱ TPU
‱ Etc..
Producing Models
‱ TF-Serving
‱ GPU acceleration
(WebKeras, Keras.js)
‱ Android (TF, TF Lite)
‱ iOS (Native CoreML)
‱ Raspberry Pi
{code}
Run The Code
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Working Principle Of Keras
Let’s take a quick look at the basics of Keras’ backend
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Working Principle – Backend
‱ e = c*d where, “c = a+b” and “d = b+1”
‱ So, e = (a+b)*(b+1)
‱ Here “a” ,“b” are inputs
01
02
03
04
Expressing complex expressions as a
combination of simple operations
Useful for calculating derivatives
during backpropagation
Easier to implement distributed
computation
Just specify the inputs, outputs and
make sure the graph is connected
Computational Graphs
As easy as that!
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Keras Models
There are 2 major models that Keras offers!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Keras Models
Sequential Model
‱ Linear stack of layers
‱ Useful for building simple models
‱ Simple classification network
‱ Encoder – Decoder models
‱ The model we all know and love!
‱ Treat each layer as object that feeds into the next.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Keras Models
Functional Model
‱ Like playing with Lego bricks
‱ Good for 95% of use cases
Multi-input, multi-output and arbitrary static graph
topologies
Multi – input and Multi – output models
Complex models which forks into 2 or more
branches
Models with shared (Weights) layers
01
02
03
04
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Keras Models
Functional Model (Domain Adaption)
‱ Train on Domain A and Test on Domain B
‱ Results in poor performance on test set
‱ The data are from different domains
We will be looking at a very interesting use case
using the functional model in the upcoming slides
Solution: Adapt the model to both the domains
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Understanding Execution
There are 2 types of execution!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Execution – Two Types
Deferred (symbolic)
‱ We use Python to build a
computation graph first
‱ The compiled graph then
gets executed later
Eager ( imperative)
‱ Here, the Python runtime
is the execution runtime
‱ It is similar to execution
with Numpy
‱ Symbolic tensors don’t have a value in the Python code (yet)
‱ Eager tensors have a value in the Python code
‱ With eager execution, value-dependent dynamic topologies
(tree-RNNs) can be used.
On the whole
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Implementing a Neural Network
There are 5 major steps to implement our own Neural Network with Keras!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Implementing A Neural Network
1. Prepare Input
‱ Preparing the input and
specify the input dimension
(size)
‱ Images, videos, text and audio
2. Define the ANN Model
‱ Define the model architecture and
build the computational graph
‱ Sequential or Functional Style
‱ MLP, CNN, RNN 3. Optimizers
‱ Specify the optimizer and configure
the learning process
‱ SGD, RMSprop, Adam
5. Train and Evaluate Model
‱ Train the model based on the
training data
‱ Test the model on the dataset
with the testing data
4. Loss Function
‱ Specify the Inputs, Outputs of the
computational graph (model) and
the Loss function
‱ MSE, Cross Entropy, Hinge
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use-Case With Keras
Let’s check out an interesting Wine Classifier use-case!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Problem Statement
“Predicting the price of wine with the Keras Functional API and TensorFlow”
Building a wide and deep network using Keras (tf.Keras)
to predict the price of wine from its description
Predict the price of a bottle of wine
just from its description and variety?
‱ This problem is well suited for wide & deep learning
‱ It involves text input and there isn’t any correlation
between a wine’s description and its price
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Model
A good use-case for the Functional API is implementing a
wide and deep network in Keras!
A lot of Keras models are built using the Sequential model API
BUT Let’s try to solve our use-case with the Functional API
The Sequential API is the best way to get started with Keras
Because it lets you easily define models as a stack of layers
The Functional API allows for more flexibility and is best
suited for models with multiple inputs or combined models
Wide models are models with
sparse feature vectors or
vectors with mostly zero values
Multi-layer deep networks
do well on tasks like image
or speech recognition
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Dataset
DATASET
Country1
2 Description
3 Designation
4 Points
5 Price
6 Region_1
Region_27
8 Taster Name
9
Taster Twitter
Handle
10 Title
Variety11
Winery12
The overall goal is to create a model that
can identify the variety, winery and
location of a wine based on a description
This dataset offers some great
opportunities for sentiment analysis
and other text related predictive models
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Sample
Description:
‱ Powerful vanilla scents rise from the glass, but the fruit, even in this difficult vintage, comes out
immediately.
‱ It’s tart and sharp, with a strong herbal component, and the wine snaps into focus quickly with fruit, acid,
tannin, herb and vanilla in equal proportion.
‱ Firm and tight, still quite young, this wine needs decanting and/or further bottle age to show its best.
Variety: Pinot Noir
Prediction:
Price — $45
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Prerequisites
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Prerequisites
Here are all the imports we’ll need to build this model!
Test presence of TensorFlow by printing the version
Download the data and convert it to a Pandas Data Frame
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Use Case – Let’s See Code!
Google Colaboratory
AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
Session In A Minute
What is Keras? Contributors Specialty of Keras
Implementing a Neural Network Use-Case ImplementationKeras Models
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Keras Tutorial For Beginners | Creating Deep Learning Models Using Keras In Python | Edureka

More Related Content

What's hot (20)

PDF
Introduction To TensorFlow
Spotle.ai
 
PPTX
Introduction to Keras
John Ramey
 
PPTX
What is TensorFlow? | Introduction to TensorFlow | TensorFlow Tutorial For Be...
Simplilearn
 
PDF
TensorFlow and Keras: An Overview
Poo Kuan Hoong
 
PPTX
Deep learning with keras
MOHITKUMAR1379
 
PDF
Introduction to keras
Haritha Thilakarathne
 
PDF
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
Edureka!
 
PDF
Introduction to TensorFlow 2.0
Databricks
 
PPTX
Machine learning
Saurabh Agrawal
 
PPTX
TensorFlow Tutorial | Deep Learning With TensorFlow | TensorFlow Tutorial For...
Simplilearn
 
PDF
Deep learning - A Visual Introduction
Lukas Masuch
 
PPTX
KERAS Python Tutorial
MahmutKAMALAK
 
PDF
Tensorflow presentation
Ahmed rebai
 
PPTX
Introduction to Machine Learning
Rahul Jain
 
PPTX
Machine Learning on Your Hand - Introduction to Tensorflow Lite Preview
Modulabs
 
PDF
PyTorch Introduction
Yash Kawdiya
 
PDF
Machine Learning with TensorFlow 2
Sarah Stemmler
 
PDF
How Netflix uses Python? Edureka
Edureka!
 
PPT
Machine Learning
Vivek Garg
 
PPTX
Data Science With Python | Python For Data Science | Python Data Science Cour...
Simplilearn
 
Introduction To TensorFlow
Spotle.ai
 
Introduction to Keras
John Ramey
 
What is TensorFlow? | Introduction to TensorFlow | TensorFlow Tutorial For Be...
Simplilearn
 
TensorFlow and Keras: An Overview
Poo Kuan Hoong
 
Deep learning with keras
MOHITKUMAR1379
 
Introduction to keras
Haritha Thilakarathne
 
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
Edureka!
 
Introduction to TensorFlow 2.0
Databricks
 
Machine learning
Saurabh Agrawal
 
TensorFlow Tutorial | Deep Learning With TensorFlow | TensorFlow Tutorial For...
Simplilearn
 
Deep learning - A Visual Introduction
Lukas Masuch
 
KERAS Python Tutorial
MahmutKAMALAK
 
Tensorflow presentation
Ahmed rebai
 
Introduction to Machine Learning
Rahul Jain
 
Machine Learning on Your Hand - Introduction to Tensorflow Lite Preview
Modulabs
 
PyTorch Introduction
Yash Kawdiya
 
Machine Learning with TensorFlow 2
Sarah Stemmler
 
How Netflix uses Python? Edureka
Edureka!
 
Machine Learning
Vivek Garg
 
Data Science With Python | Python For Data Science | Python Data Science Cour...
Simplilearn
 

Similar to Keras Tutorial For Beginners | Creating Deep Learning Models Using Keras In Python | Edureka (20)

PDF
CI-Keras for deep learning by adrian.pdf
sakshamagarwalm2
 
PPTX
Keras on tensorflow in R & Python
Longhow Lam
 
PDF
unit-iii-deep-learningunit-iii-deep-learning.pdf
nandan543979
 
PPTX
Keras: A versatile modeling layer for deep learning
Dr. Ananth Krishnamoorthy
 
PDF
dl-unit-3 materialdl-unit-3 material.pdf
nandan543979
 
PDF
Transfer Learning
Hichem Felouat
 
PPTX
Demystifying-AI-Frameworks-TensorFlow-PyTorch-JAX-and-More (1).pptx
Anant Garg
 
PPTX
Training course lect1
Noor Dhiya
 
PDF
Introduction to Convolutional Neural Networks
Hannes Hapke
 
PPTX
Final training course
Noor Dhiya
 
PDF
PyTorch Python Tutorial | Deep Learning Using PyTorch | Image Classifier Usin...
Edureka!
 
PPTX
Deep Learning: Session 3 : How to succeed
Rajagopal A
 
PPTX
2 day Deep Learning Workshop at Karunya - Session 2
Rajagopal A
 
PDF
keras_tutorial.pdf
LĂȘ Duy TĂąn
 
PDF
A Tale of Three Deep Learning Frameworks: TensorFlow, Keras, & PyTorch with B...
Databricks
 
DOCX
DLT UNIT-3.docx
0567Padma
 
PDF
Creating a custom Machine Learning Model for your applications - Java Dev Day...
Isabel Palomar
 
PDF
Deep-learning-for-computer-vision-applications-using-matlab.pdf
AubainYro1
 
PPTX
python_libraries_for_artificial_intelligence.pptx
salehaalsaleh602
 
CI-Keras for deep learning by adrian.pdf
sakshamagarwalm2
 
Keras on tensorflow in R & Python
Longhow Lam
 
unit-iii-deep-learningunit-iii-deep-learning.pdf
nandan543979
 
Keras: A versatile modeling layer for deep learning
Dr. Ananth Krishnamoorthy
 
dl-unit-3 materialdl-unit-3 material.pdf
nandan543979
 
Transfer Learning
Hichem Felouat
 
Demystifying-AI-Frameworks-TensorFlow-PyTorch-JAX-and-More (1).pptx
Anant Garg
 
Training course lect1
Noor Dhiya
 
Introduction to Convolutional Neural Networks
Hannes Hapke
 
Final training course
Noor Dhiya
 
PyTorch Python Tutorial | Deep Learning Using PyTorch | Image Classifier Usin...
Edureka!
 
Deep Learning: Session 3 : How to succeed
Rajagopal A
 
2 day Deep Learning Workshop at Karunya - Session 2
Rajagopal A
 
keras_tutorial.pdf
LĂȘ Duy TĂąn
 
A Tale of Three Deep Learning Frameworks: TensorFlow, Keras, & PyTorch with B...
Databricks
 
DLT UNIT-3.docx
0567Padma
 
Creating a custom Machine Learning Model for your applications - Java Dev Day...
Isabel Palomar
 
Deep-learning-for-computer-vision-applications-using-matlab.pdf
AubainYro1
 
python_libraries_for_artificial_intelligence.pptx
salehaalsaleh602
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
PPTX
Wondershare Filmora Crack Free Download 2025
josanj305
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
DoS Attack vs DDoS Attack_ The Silent Wars of the Internet.pdf
CyberPro Magazine
 
PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
PPTX
Reimaginando la Ciberdefensa: De Copilots a Redes de Agentes
Cristian Garcia G.
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
PPTX
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
PDF
Proactive Server and System Monitoring with FME: Using HTTP and System Caller...
Safe Software
 
PDF
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
PDF
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
PPTX
CapCut Pro PC Crack Latest Version Free Free
josanj305
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
PDF
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
PPTX
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
PDF
TrustArc Webinar - Navigating APAC Data Privacy Laws: Compliance & Challenges
TrustArc
 
PDF
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
Fwdays
 
PDF
Why aren't you using FME Flow's CPU Time?
Safe Software
 
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
Wondershare Filmora Crack Free Download 2025
josanj305
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
DoS Attack vs DDoS Attack_ The Silent Wars of the Internet.pdf
CyberPro Magazine
 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
Reimaginando la Ciberdefensa: De Copilots a Redes de Agentes
Cristian Garcia G.
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
Proactive Server and System Monitoring with FME: Using HTTP and System Caller...
Safe Software
 
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
CapCut Pro PC Crack Latest Version Free Free
josanj305
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
TrustArc Webinar - Navigating APAC Data Privacy Laws: Compliance & Challenges
TrustArc
 
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
Fwdays
 
Why aren't you using FME Flow's CPU Time?
Safe Software
 

Keras Tutorial For Beginners | Creating Deep Learning Models Using Keras In Python | Edureka

  • 1. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow
  • 2. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Agenda What is Keras? Contributors for Keras Keras Models Implementing a Neural Network Use-Case Summary
  • 3. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is Keras? Official high-level API of TensorFlow! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 4. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow What Is Keras? Keras - Modular ‱ Building models is as simple as stacking layers and connecting graphs. Open Source ‱ Actively developed by contributors across the world! ‱ Good amount of documentation Deep Learning Library ‱ High-level Neural Network API ‱ Runs on top of TensorFlow, Theano or CNTK. High Performance ‱ High performing API used to specify and train differentiable programs.
  • 5. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Who Makes Keras? Who are the contributors and backers? Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 6. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Who Makes Keras? 4800+ Contributors 250,000 Keras developers > 2x Year-on-year growth Start-ups Good amount of traction
  • 7. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Who Uses Keras? Let’s check out the industry traction! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 8. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Industry Traction And more..!
  • 9. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow What Makes Keras Special? Highlights from one of the top Deep Learning libraries! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 10. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow What Makes Keras Special? Large adoption in the industry Multi-backend, multi-platform Focus on user experience Research community4 Easy to grasp all concepts5 Fast prototyping6 Runs seamlessly on CPU and GPU7 Freedom to design any architecture8 Simple to get started9 Easy production of models10
  • 11. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Keras User Experience API Designed for Humans ‱ Keras follows best practices for reducing cognitive load ‱ Offers consistent and simple APIs Not Designed for Machines ‱ Minimizes number of user actions required for common use cases ‱ Provides clear feedback upon user error Easy to Learn & Easy to Use ‱ More productive ‱ Try more ideas than your competition ‱ Helps you win competitions High Flexibility ‱ Keras integrates with lower-level Deep Learning languages like TensorFlow ‱ Implement anything which was built in base language. 1 3 2 4
  • 12. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Multi-Backend & Multi-Platform 01 02 03 Development Develop in Python, R Run the code with: ‱ TensorFlow ‱ CNTK ‱ Theano ‱ MXNet ‱ CPU ‱ NVIDIA GPU ‱ AMD GPU ‱ TPU ‱ Etc.. Producing Models ‱ TF-Serving ‱ GPU acceleration (WebKeras, Keras.js) ‱ Android (TF, TF Lite) ‱ iOS (Native CoreML) ‱ Raspberry Pi {code} Run The Code
  • 13. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Working Principle Of Keras Let’s take a quick look at the basics of Keras’ backend Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 14. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Working Principle – Backend ‱ e = c*d where, “c = a+b” and “d = b+1” ‱ So, e = (a+b)*(b+1) ‱ Here “a” ,“b” are inputs 01 02 03 04 Expressing complex expressions as a combination of simple operations Useful for calculating derivatives during backpropagation Easier to implement distributed computation Just specify the inputs, outputs and make sure the graph is connected Computational Graphs As easy as that!
  • 15. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Keras Models There are 2 major models that Keras offers! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 16. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Keras Models Sequential Model ‱ Linear stack of layers ‱ Useful for building simple models ‱ Simple classification network ‱ Encoder – Decoder models ‱ The model we all know and love! ‱ Treat each layer as object that feeds into the next.
  • 17. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Keras Models Functional Model ‱ Like playing with Lego bricks ‱ Good for 95% of use cases Multi-input, multi-output and arbitrary static graph topologies Multi – input and Multi – output models Complex models which forks into 2 or more branches Models with shared (Weights) layers 01 02 03 04
  • 18. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Keras Models Functional Model (Domain Adaption) ‱ Train on Domain A and Test on Domain B ‱ Results in poor performance on test set ‱ The data are from different domains We will be looking at a very interesting use case using the functional model in the upcoming slides Solution: Adapt the model to both the domains
  • 19. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Understanding Execution There are 2 types of execution! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 20. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Execution – Two Types Deferred (symbolic) ‱ We use Python to build a computation graph first ‱ The compiled graph then gets executed later Eager ( imperative) ‱ Here, the Python runtime is the execution runtime ‱ It is similar to execution with Numpy ‱ Symbolic tensors don’t have a value in the Python code (yet) ‱ Eager tensors have a value in the Python code ‱ With eager execution, value-dependent dynamic topologies (tree-RNNs) can be used. On the whole
  • 21. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Implementing a Neural Network There are 5 major steps to implement our own Neural Network with Keras! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 22. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Implementing A Neural Network 1. Prepare Input ‱ Preparing the input and specify the input dimension (size) ‱ Images, videos, text and audio 2. Define the ANN Model ‱ Define the model architecture and build the computational graph ‱ Sequential or Functional Style ‱ MLP, CNN, RNN 3. Optimizers ‱ Specify the optimizer and configure the learning process ‱ SGD, RMSprop, Adam 5. Train and Evaluate Model ‱ Train the model based on the training data ‱ Test the model on the dataset with the testing data 4. Loss Function ‱ Specify the Inputs, Outputs of the computational graph (model) and the Loss function ‱ MSE, Cross Entropy, Hinge
  • 23. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use-Case With Keras Let’s check out an interesting Wine Classifier use-case! Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 24. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Problem Statement “Predicting the price of wine with the Keras Functional API and TensorFlow” Building a wide and deep network using Keras (tf.Keras) to predict the price of wine from its description Predict the price of a bottle of wine just from its description and variety? ‱ This problem is well suited for wide & deep learning ‱ It involves text input and there isn’t any correlation between a wine’s description and its price
  • 25. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Model A good use-case for the Functional API is implementing a wide and deep network in Keras! A lot of Keras models are built using the Sequential model API BUT Let’s try to solve our use-case with the Functional API The Sequential API is the best way to get started with Keras Because it lets you easily define models as a stack of layers The Functional API allows for more flexibility and is best suited for models with multiple inputs or combined models Wide models are models with sparse feature vectors or vectors with mostly zero values Multi-layer deep networks do well on tasks like image or speech recognition
  • 26. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Dataset DATASET Country1 2 Description 3 Designation 4 Points 5 Price 6 Region_1 Region_27 8 Taster Name 9 Taster Twitter Handle 10 Title Variety11 Winery12 The overall goal is to create a model that can identify the variety, winery and location of a wine based on a description This dataset offers some great opportunities for sentiment analysis and other text related predictive models
  • 27. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Sample Description: ‱ Powerful vanilla scents rise from the glass, but the fruit, even in this difficult vintage, comes out immediately. ‱ It’s tart and sharp, with a strong herbal component, and the wine snaps into focus quickly with fruit, acid, tannin, herb and vanilla in equal proportion. ‱ Firm and tight, still quite young, this wine needs decanting and/or further bottle age to show its best. Variety: Pinot Noir Prediction: Price — $45
  • 28. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Prerequisites
  • 29. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Prerequisites Here are all the imports we’ll need to build this model! Test presence of TensorFlow by printing the version Download the data and convert it to a Pandas Data Frame
  • 30. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Use Case – Let’s See Code! Google Colaboratory
  • 31. AI & Deep Learning Training www.edureka.co/ai-deep-learning-with-tensorflow Session In A Minute What is Keras? Contributors Specialty of Keras Implementing a Neural Network Use-Case ImplementationKeras Models
  • 32. Copyright © 2018, edureka and/or its affiliates. All rights reserved.