ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Function Approximation And  Pattern Recognition Imthias Ahamed T. P. Dept. of Electrical Engineering, T.K.M.College of Engineering, Kollam ¨C 691005, [email_address]
Function Approximation Problem x = [0 1 2 3 4 5 6 7 8 9 10];   d = [0 1 2 3 4 3 2 1 2 3 4]; Find  f such that
A matlab program clf clear   x= [0 1 2 3 4 5 6 7 8 9 10];   d = [0 1 2 3 4 3 2 1 2 3 4]; plot(x,d,'x') pause
Learning Problem
Optimization Technique:  Steepest Descent The steepest descent algorithm:  w (n+1)= w (n)- ? g (n)
Least-Mean-Square (LMS) Algorithm e(n)  is the error signal measured at time n.
Model of a Simple Perceptron and Let b k =w k0  and x 0 =+1
Activation Functions Threshold Function Sigmoid Function
Multi Layer Perceptron Multi Layer Perceptron or Feedforward Network Consists of Input Layer One or more Hidden Layer Output Layer
Multi Layer Perceptron
A matlab program clf clear   x= [0 1 2 3 4 5 6 7 8 9 10];   d = [0 1 2 3 4 3 2 1 2 3 4]; plot(x,d,'x') pause
net = newff([0 10],[5 1],{'tansig' 'purelin'}); ybeforetrain = sim(net,x) plot(x,d,'x',x,ybeforetrain,'o')  legend('desired','actual') pause
  net.trainParam.epochs = 50;   net = train(net,x,d);   Y = sim(net,x); plot(x,d,'x',x,Y,'o')  legend('desired','actual') pause
xtest=0:.5:10;  ytest = sim(net,xtest); plot(x,d,'x',xtest,ytest,'o')  legend('desired','actual')
Pattern Recognition Problem ?
An Example x=[-0.5  -.5  .3  .1  .6  .7; -.5  .5  -.5  1  .8  1 ] Y=[  1  1  0  0  0  0]
?
?
Linearly Non Separable data
Summary Perceptron Weights Activation Function Error minimization Gradient descent Learning Rule
Training data Testing data Linearly separable Linearly non separable
Back-propagation algorithm . Notations: i, j and k refer to different neurons; with signals propagating through the network from left to right, neuron j lies in a layer to the right of neuron i. w ji (n): The synaptic weight connecting the output of neuron i to the input of neuron j at iteration n.
Back-propagation Algorithm
Back-propagation Algorithm Contd... Local Gradient
Case 1: Neuron j is an Output Node
Case 2: Neuron j is a Hidden Node
Case 2: Neuron j is a Hidden Node  (Contd¡­)
Delta Rule If neuron j is an output node,  If neuron j is an hidden node,
Back-propagation Algorithm: Summary Initialization. Pick all of the w ji  from a uniform distribution. Presentations of Training Examples. Forward Computation. Backward Computation. Iteration.
Back-propagation Algorithm: Summary 1. Initialiaze  2. Forward Computation: 3. Backwar Computration:  For all hidden layers l do
4. Update weights
Learning with a Teacher  (Supervised Learning)
Learning without a Teacher  Reinforcement Learning
Learning Tasks  Function Approximation d = f ( x ) x : input vector d : output vector f ( ? ) is assumed to be unknown Given a set of labeled examples: Requirement: Design a neural network to approximate this unknown function f( ? ) such that F( ? ). || F ( x )- f ( x )||< ? for all  x , where   ?  is a small positive number
Learning Tasks Pattern Recognition Def: A received pattern/signal is assigned to one of a prescribed number of classes. Input pattern x Unsupervised network for feature extraction Feature vector y Supervised network for classification 1 2 r ¡­
Thank You

More Related Content

What's hot (20)

Deep Learning, Keras, and TensorFlow
Deep Learning, Keras, and TensorFlowDeep Learning, Keras, and TensorFlow
Deep Learning, Keras, and TensorFlow
Oswald Campesato
?
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Universitat Polit¨¨cnica de Catalunya
?
Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)
Oswald Campesato
?
Perceptron in ANN
Perceptron in ANNPerceptron in ANN
Perceptron in ANN
Zaid Al-husseini
?
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Universitat Polit¨¨cnica de Catalunya
?
Scala and Deep Learning
Scala and Deep LearningScala and Deep Learning
Scala and Deep Learning
Oswald Campesato
?
Backpropagation - Elisa Sayrol - UPC Barcelona 2018
Backpropagation - Elisa Sayrol - UPC Barcelona 2018Backpropagation - Elisa Sayrol - UPC Barcelona 2018
Backpropagation - Elisa Sayrol - UPC Barcelona 2018
Universitat Polit¨¨cnica de Catalunya
?
The world of loss function
The world of loss functionThe world of loss function
The world of loss function
?? ?
?
Perceptron working
Perceptron workingPerceptron working
Perceptron working
Zarnigar Altaf
?
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
Universitat Polit¨¨cnica de Catalunya
?
Lecture 06 marco aurelio ranzato - deep learning
Lecture 06   marco aurelio ranzato - deep learningLecture 06   marco aurelio ranzato - deep learning
Lecture 06 marco aurelio ranzato - deep learning
mustafa sarac
?
Deep Learning: R with Keras and TensorFlow
Deep Learning: R with Keras and TensorFlowDeep Learning: R with Keras and TensorFlow
Deep Learning: R with Keras and TensorFlow
Oswald Campesato
?
Deep Learning, Scala, and Spark
Deep Learning, Scala, and SparkDeep Learning, Scala, and Spark
Deep Learning, Scala, and Spark
Oswald Campesato
?
C++ and Deep Learning
C++ and Deep LearningC++ and Deep Learning
C++ and Deep Learning
Oswald Campesato
?
Backpropagation in Convolutional Neural Network
Backpropagation in Convolutional Neural NetworkBackpropagation in Convolutional Neural Network
Backpropagation in Convolutional Neural Network
Hiroshi Kuwajima
?
Java and Deep Learning
Java and Deep LearningJava and Deep Learning
Java and Deep Learning
Oswald Campesato
?
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
KazuyukiMasada
?
Deep learning: Mathematical Perspective
Deep learning: Mathematical PerspectiveDeep learning: Mathematical Perspective
Deep learning: Mathematical Perspective
YounusS2
?
Neural network
Neural networkNeural network
Neural network
Mahmoud Hussein
?
Auto-encoding variational bayes
Auto-encoding variational bayesAuto-encoding variational bayes
Auto-encoding variational bayes
Kyuri Kim
?
Deep Learning, Keras, and TensorFlow
Deep Learning, Keras, and TensorFlowDeep Learning, Keras, and TensorFlow
Deep Learning, Keras, and TensorFlow
Oswald Campesato
?
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Optimization for Neural Network Training - Veronica Vilaplana - UPC Barcelona...
Universitat Polit¨¨cnica de Catalunya
?
Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)
Oswald Campesato
?
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Convolutional Neural Networks (DLAI D5L1 2017 UPC Deep Learning for Artificia...
Universitat Polit¨¨cnica de Catalunya
?
The world of loss function
The world of loss functionThe world of loss function
The world of loss function
?? ?
?
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
The Perceptron (DLAI D1L2 2017 UPC Deep Learning for Artificial Intelligence)
Universitat Polit¨¨cnica de Catalunya
?
Lecture 06 marco aurelio ranzato - deep learning
Lecture 06   marco aurelio ranzato - deep learningLecture 06   marco aurelio ranzato - deep learning
Lecture 06 marco aurelio ranzato - deep learning
mustafa sarac
?
Deep Learning: R with Keras and TensorFlow
Deep Learning: R with Keras and TensorFlowDeep Learning: R with Keras and TensorFlow
Deep Learning: R with Keras and TensorFlow
Oswald Campesato
?
Deep Learning, Scala, and Spark
Deep Learning, Scala, and SparkDeep Learning, Scala, and Spark
Deep Learning, Scala, and Spark
Oswald Campesato
?
Backpropagation in Convolutional Neural Network
Backpropagation in Convolutional Neural NetworkBackpropagation in Convolutional Neural Network
Backpropagation in Convolutional Neural Network
Hiroshi Kuwajima
?
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
¥é¥Ó¥Ã¥È¥Á¥ã¥ì¥ó¥¸¡¡ÉîŒÓѧÁ•Day1 day2¥ì¥Ý©`¥È
KazuyukiMasada
?
Deep learning: Mathematical Perspective
Deep learning: Mathematical PerspectiveDeep learning: Mathematical Perspective
Deep learning: Mathematical Perspective
YounusS2
?
Auto-encoding variational bayes
Auto-encoding variational bayesAuto-encoding variational bayes
Auto-encoding variational bayes
Kyuri Kim
?

Viewers also liked (12)

Optimization
OptimizationOptimization
Optimization
Naveen Saggu
?
Teaching the Dynamics and Significance of Non-Newtonian Materials
Teaching the Dynamics and Significance of Non-Newtonian MaterialsTeaching the Dynamics and Significance of Non-Newtonian Materials
Teaching the Dynamics and Significance of Non-Newtonian Materials
Marco Morales
?
A comparison of molecular dynamics simulations using GROMACS with GPU and CPU
A comparison of molecular dynamics simulations using GROMACS with GPU and CPUA comparison of molecular dynamics simulations using GROMACS with GPU and CPU
A comparison of molecular dynamics simulations using GROMACS with GPU and CPU
Alex Camargo
?
Energy Minimization Using Gromacs
Energy Minimization Using GromacsEnergy Minimization Using Gromacs
Energy Minimization Using Gromacs
Rajendra K Labala
?
Seminar energy minimization mettthod
Seminar energy minimization mettthodSeminar energy minimization mettthod
Seminar energy minimization mettthod
Pavan Badgujar
?
CFD
CFDCFD
CFD
nithinkarna
?
energy minimization
energy minimizationenergy minimization
energy minimization
pradeep kore
?
BIOS 203 Lecture 3: Classical molecular dynamics
BIOS 203 Lecture 3: Classical molecular dynamicsBIOS 203 Lecture 3: Classical molecular dynamics
BIOS 203 Lecture 3: Classical molecular dynamics
bios203
?
Energy minimization
Energy minimizationEnergy minimization
Energy minimization
Pinky Vincent
?
Gradient descent method
Gradient descent methodGradient descent method
Gradient descent method
Sanghyuk Chun
?
Molecular dynamics and Simulations
Molecular dynamics and SimulationsMolecular dynamics and Simulations
Molecular dynamics and Simulations
Abhilash Kannan
?
Lecture 2-cs648
Lecture 2-cs648Lecture 2-cs648
Lecture 2-cs648
Rajiv Omar
?
Teaching the Dynamics and Significance of Non-Newtonian Materials
Teaching the Dynamics and Significance of Non-Newtonian MaterialsTeaching the Dynamics and Significance of Non-Newtonian Materials
Teaching the Dynamics and Significance of Non-Newtonian Materials
Marco Morales
?
A comparison of molecular dynamics simulations using GROMACS with GPU and CPU
A comparison of molecular dynamics simulations using GROMACS with GPU and CPUA comparison of molecular dynamics simulations using GROMACS with GPU and CPU
A comparison of molecular dynamics simulations using GROMACS with GPU and CPU
Alex Camargo
?
Energy Minimization Using Gromacs
Energy Minimization Using GromacsEnergy Minimization Using Gromacs
Energy Minimization Using Gromacs
Rajendra K Labala
?
Seminar energy minimization mettthod
Seminar energy minimization mettthodSeminar energy minimization mettthod
Seminar energy minimization mettthod
Pavan Badgujar
?
BIOS 203 Lecture 3: Classical molecular dynamics
BIOS 203 Lecture 3: Classical molecular dynamicsBIOS 203 Lecture 3: Classical molecular dynamics
BIOS 203 Lecture 3: Classical molecular dynamics
bios203
?
Gradient descent method
Gradient descent methodGradient descent method
Gradient descent method
Sanghyuk Chun
?
Molecular dynamics and Simulations
Molecular dynamics and SimulationsMolecular dynamics and Simulations
Molecular dynamics and Simulations
Abhilash Kannan
?

Similar to Function Approx2009 (20)

Matlab Nn Intro
Matlab Nn IntroMatlab Nn Intro
Matlab Nn Intro
Imthias Ahamed
?
Matlab1
Matlab1Matlab1
Matlab1
guest8ba004
?
Scaling Deep Learning with MXNet
Scaling Deep Learning with MXNetScaling Deep Learning with MXNet
Scaling Deep Learning with MXNet
AI Frontiers
?
Mit6 094 iap10_lec03
Mit6 094 iap10_lec03Mit6 094 iap10_lec03
Mit6 094 iap10_lec03
Tribhuwan Pant
?
Scala as a Declarative Language
Scala as a Declarative LanguageScala as a Declarative Language
Scala as a Declarative Language
vsssuresh
?
Integral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewerIntegral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewer
JoshuaAgcopra
?
Compilation of COSMO for GPU using LLVM
Compilation of COSMO for GPU using LLVMCompilation of COSMO for GPU using LLVM
Compilation of COSMO for GPU using LLVM
Linaro
?
Machine Learning 1
Machine Learning 1Machine Learning 1
Machine Learning 1
cairo university
?
Matlab-free course by Mohd Esa
Matlab-free course by Mohd EsaMatlab-free course by Mohd Esa
Matlab-free course by Mohd Esa
Mohd Esa
?
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Big_Data_Ukraine
?
DSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptxDSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptx
HamedNassar5
?
INTRODUCTION TO MATLAB session with notes
  INTRODUCTION TO MATLAB   session with  notes  INTRODUCTION TO MATLAB   session with  notes
INTRODUCTION TO MATLAB session with notes
Infinity Tech Solutions
?
Introduction to PyTorch
Introduction to PyTorchIntroduction to PyTorch
Introduction to PyTorch
Jun Young Park
?
Introduction to Algorithms
Introduction to AlgorithmsIntroduction to Algorithms
Introduction to Algorithms
Venkatesh Iyer
?
Programming with matlab session 1
Programming with matlab session 1Programming with matlab session 1
Programming with matlab session 1
Infinity Tech Solutions
?
INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptx
Devaraj Chilakala
?
01 - DAA - PPT.pptx
01 - DAA - PPT.pptx01 - DAA - PPT.pptx
01 - DAA - PPT.pptx
KokilaK25
?
Matlab integration
Matlab integrationMatlab integration
Matlab integration
pramodkumar1804
?
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture Notes
Sreedhar Chowdam
?
Hardware Acceleration for Machine Learning
Hardware Acceleration for Machine LearningHardware Acceleration for Machine Learning
Hardware Acceleration for Machine Learning
CastLabKAIST
?
Scaling Deep Learning with MXNet
Scaling Deep Learning with MXNetScaling Deep Learning with MXNet
Scaling Deep Learning with MXNet
AI Frontiers
?
Scala as a Declarative Language
Scala as a Declarative LanguageScala as a Declarative Language
Scala as a Declarative Language
vsssuresh
?
Integral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewerIntegral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewer
JoshuaAgcopra
?
Compilation of COSMO for GPU using LLVM
Compilation of COSMO for GPU using LLVMCompilation of COSMO for GPU using LLVM
Compilation of COSMO for GPU using LLVM
Linaro
?
Matlab-free course by Mohd Esa
Matlab-free course by Mohd EsaMatlab-free course by Mohd Esa
Matlab-free course by Mohd Esa
Mohd Esa
?
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Big_Data_Ukraine
?
DSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptxDSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptx
HamedNassar5
?
Introduction to Algorithms
Introduction to AlgorithmsIntroduction to Algorithms
Introduction to Algorithms
Venkatesh Iyer
?
INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptx
Devaraj Chilakala
?
01 - DAA - PPT.pptx
01 - DAA - PPT.pptx01 - DAA - PPT.pptx
01 - DAA - PPT.pptx
KokilaK25
?
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture Notes
Sreedhar Chowdam
?
Hardware Acceleration for Machine Learning
Hardware Acceleration for Machine LearningHardware Acceleration for Machine Learning
Hardware Acceleration for Machine Learning
CastLabKAIST
?

Function Approx2009