SlideShare ist ein Scribd-Unternehmen logo
1 von 122
Downloaden Sie, um offline zu lesen
by Ilya Kuzovkin
ilya.kuzovkin@gmail.com
Machine Learning Estonia
2016
Deep Learning
THEORY, HISTORY,
STATE OF THE ART & PRACTICAL TOOLS
http://neuro.cs.ut.ee
Where it has started
How it evolved
What is the state now
How can you use it
How it learns
Where it has started
Where it has started
Artificial Neuron
Where it has started
Artificial Neuron
McCulloch and Pitts
“A Logical Calculus of the Ideas Immanent in Nervous Activity”
1943
Where it has started
Artificial Neuron
McCulloch and Pitts
“A Logical Calculus of the Ideas Immanent in Nervous Activity”
1943
Where it has started
Perceptron
Frank Rosenblatt1957
Where it has started
Perceptron
Frank Rosenblatt1957
Where it has started
Perceptron
Frank Rosenblatt1957
Where it has started
Perceptron
Frank Rosenblatt1957
“[The Perceptron is] the embryo of an electronic computer that
[the Navy] expects will be able to walk, talk, see, write,
reproduce itself and be conscious of its existence.”
THE NEW YORK TIMES
Where it has started
Sigmoid & Backpropagation
Where it has started
Sigmoid & Backpropagation
Where it has started
Sigmoid & Backpropagation
Measure how small changes in weights affect output
Can apply NN to regression
Where it has started
Sigmoid & Backpropagation
(Werbos) Rumelhart, Hinton, Williams
(1974) 1986
“Learning representations by back-propagating errors” (Nature)
Measure how small changes in weights affect output
Can apply NN to regression
Where it has started
Sigmoid & Backpropagation
(Werbos) Rumelhart, Hinton, Williams
(1974) 1986
“Learning representations by back-propagating errors” (Nature)
Measure how small changes in weights affect output
Multilayer neural networks, etc.
Can apply NN to regression
Where it has started
Why DL revolution did not happen in 1986?
FROM A TALK BY GEOFFREY HINTON
Where it has started
Why DL revolution did not happen in 1986?
• Not enough data (datasets were 1000 times
too small)
!
• Computers were too slow (1,000,000 times)
FROM A TALK BY GEOFFREY HINTON
Where it has started
Why DL revolution did not happen in 1986?
• Not enough data (datasets were 1000 times
too small)
!
• Computers were too slow (1,000,000 times)
!
• Not enough attention to network initialization
!
• Wrong non-linearity
FROM A TALK BY GEOFFREY HINTON
How it learns
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
Repeat for h2 = 0.596, o1 = 0.751, o2 = 0.773
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
We have o1, o2
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
We have o1, o2
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
We have o1, o2
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
We have o1, o2
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Forward Pass — Calculating the total error
NET OUT
We have o1, o2
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
Learning rate
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
1. The Backwards Pass — updating weights
NET OUT
Gradient descent update rule
Learning rate
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
• Repeat for w6, w7, w8
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
• Repeat for w6, w7, w8
• In analogous way for w1, w2, w3, w4
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
• Repeat for w6, w7, w8
• In analogous way for w1, w2, w3, w4
• Calculate the total error again:
it was:
0.291027924
0.298371109
How it learns
Backpropagation
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
Given inputs 0.05 and 0.10,
we want the neural network
to output 0.01 and 0.99
NET OUT
• Repeat for w6, w7, w8
• In analogous way for w1, w2, w3, w4
• Calculate the total error again:
it was:
!
• Repeat 10,000 times:
0.291027924
0.298371109
0.000035085
How it learns
Optimization methods
Alec Radford “Introduction to Deep Learning with Python”
How it learns
Optimization methods
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
How it evolved
1-layer NN
INPUT OUTPUT
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
1-layer NN
92.5% on the MNIST test set
INPUT OUTPUT
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
1-layer NN
92.5% on the MNIST test set
INPUT OUTPUT
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
One hidden layer
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
One hidden layer
98.2% on the MNIST test set
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
One hidden layer
98.2% on the MNIST test set
Activity of a 100 hidden
neurons (out of 625)
Alec Radford “Introduction to Deep Learning with Python”
How it evolved
Overfitting
How it evolved
Dropout
Srivastava, Hinton, Krizhevsky, Sutskever, Salakhutdinov, “Dropout: A Simple Way to Prevent Neural Networks from Overfitting”, 2014
How it evolved
Dropout
Srivastava, Hinton, Krizhevsky, Sutskever, Salakhutdinov, “Dropout: A Simple Way to Prevent Neural Networks from Overfitting”, 2014
How it evolved
Dropout
Srivastava, Hinton, Krizhevsky, Sutskever, Salakhutdinov, “Dropout: A Simple Way to Prevent Neural Networks from Overfitting”, 2014
How it evolved
Dropout
Srivastava, Hinton, Krizhevsky, Sutskever, Salakhutdinov, “Dropout: A Simple Way to Prevent Neural Networks from Overfitting”, 2014
How it evolved
ReLU
X. Glorot, A. Bordes, Y. Bengio, “Deep Sparse Rectifier Neural Networks”, 2011
How it evolved
ReLU
X. Glorot, A. Bordes, Y. Bengio, “Deep Sparse Rectifier Neural Networks”, 2011
How it evolved
“Modern” ANN
• Several hidden layers
• ReLU activation units
• Dropout
How it evolved
“Modern” ANN
• Several hidden layers
• ReLU activation units
• Dropout
How it evolved
“Modern” ANN
• Several hidden layers
• ReLU activation units
• Dropout
99.0% on the MNIST test set
How it evolved
Convolution
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
+1 +1 +1
0 0 0
-1 -1 -1
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
+40 +40 +40
0 0 0
-40 -40 -40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
0
+40 +40 +40
0 0 0
-40 -40 -40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
0
90
90
0
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
0
90
90
0
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
0
90
90
0
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
How it evolved
Convolution
+1 +1 +1
0 0 0
-1 -1 -1
Prewitt
edge
detector
0
90
90
0
40 40 40
40 40 40
40 40 40
10 10 10
10 10 10
10 10 10
Edge detector is a handcrafted feature detector.
How it evolved
Convolution
The idea of a convolutional layer is to learn feature
detectors instead of using handcrafted ones
How it evolved
Convolution
The idea of a convolutional layer is to learn feature
detectors instead of using handcrafted ones
http://yann.lecun.com/exdb/mnist/
How it evolved
Convolution
The idea of a convolutional layer is to learn feature
detectors instead of using handcrafted ones
99.50% on the MNIST test set
CURRENT BEST: 99.77% by committee of 35 conv. nets
http://yann.lecun.com/exdb/mnist/
How it evolved
More layers
How it evolved
More layers
C. Szegedy, et al., “Going Deeper with Convolutions”, 2014
How it evolved
More layers
C. Szegedy, et al., “Going Deeper with Convolutions”, 2014
ILSVRC 2015 winner — 152 (!) layers
K. He et al., “Deep
Residual Learning
for Image
Recognition”,
2015
How it evolved
Hyperparameters
• Network:
• architecture
• number of layers
• number of units (in each layer)
• type of the activation function
• weight initialization
• Convolutional layers:
• size
• stride
• number of filters
• Optimization method:
• learning rate
• other method-specific
constants
• …
How it evolved
Hyperparameters
• Network:
• architecture
• number of layers
• number of units (in each layer)
• type of the activation function
• weight initialization
• Convolutional layers:
• size
• stride
• number of filters
• Optimization method:
• learning rate
• other method-specific
constants
• …
Grid search :(
How it evolved
Hyperparameters
• Network:
• architecture
• number of layers
• number of units (in each layer)
• type of the activation function
• weight initialization
• Convolutional layers:
• size
• stride
• number of filters
• Optimization method:
• learning rate
• other method-specific
constants
• …
Grid search :(
Random search :/
How it evolved
Hyperparameters
• Network:
• architecture
• number of layers
• number of units (in each layer)
• type of the activation function
• weight initialization
• Convolutional layers:
• size
• stride
• number of filters
• Optimization method:
• learning rate
• other method-specific
constants
• …
Grid search :(
Random search :/
Bayesian optimization :)
Snoek, Larochelle, Adams, “Practical Bayesian Optimization of Machine Learning Algorithms”
How it evolved
Hyperparameters
• Network:
• architecture
• number of layers
• number of units (in each layer)
• type of the activation function
• weight initialization
• Convolutional layers:
• size
• stride
• number of filters
• Optimization method:
• learning rate
• other method-specific
constants
• …
Grid search :(
Random search :/
Bayesian optimization :)
Informal parameter search :)
Snoek, Larochelle, Adams, “Practical Bayesian Optimization of Machine Learning Algorithms”
How it evolved
Major Types of ANNs
feedforward convolutional
How it evolved
Major Types of ANNs
recurrent
feedforward convolutional
How it evolved
Major Types of ANNs
recurrent autoencoder
feedforward convolutional
What is the state now
What is the state now
Computer vision
http://cs.stanford.edu/people/karpathy/deepimagesent/
Kaiming He, et al.
“Deep Residual Learning for Image Recognition”
2015
What is the state now
Natural Language Processing
speech recognition + translation Facebook bAbi dataset: question answering
http://smerity.com/articles/2015/keras_qa.html
http://karpathy.github.io/2015/05/21/rnn-effectiveness/
What is the state now
AI
DeepMind’s DQN
What is the state now
AI
Sukhbaatar et al. “MazeBase: A Sandbox for Learning from Games”, 2015DeepMind’s DQN
What is the state now
Neuroscience
Güclü and Gerven, “Deep Neural Networks Reveal a Gradient in the Complexity of Neural Representations across the Ventral Stream”, 2015
What is the state now
Neuroscience
Güclü and Gerven, “Deep Neural Networks Reveal a Gradient in the Complexity of Neural Representations across the Ventral Stream”, 2015
How can you use it
How can you use it
Pre-trained models
How can you use it
Pre-trained models
• Go to https://github.com/BVLC/caffe/wiki/Model-Zoo, pick a model
!
!
!
!
• … and use it in your application
How can you use it
Pre-trained models
• Go to https://github.com/BVLC/caffe/wiki/Model-Zoo, pick a model
!
!
!
!
• … and use it in your application
• Or …
!
!
!
How can you use it
Pre-trained models
• Go to https://github.com/BVLC/caffe/wiki/Model-Zoo, pick a model
!
!
!
!
• … and use it in your application
• Or …
!
!
!
!
• … use part of it as the starting point for your model
. . .
How can you use it
Zoo of Frameworks
Low-level
High-level &
Wrappers
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
How can you use it
Keras
http://keras.io
• A Step by Step Backpropagation Example
http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example
• Online book by By Michael Nielsen
http://neuralnetworksanddeeplearning.com
• CS231n: Convolutional Neural Networks for Visual Recognition
http://cs231n.stanford.edu/

Weitere ähnliche Inhalte

Andere mochten auch

Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015
Lecture 29 Convolutional Neural Networks -  Computer Vision Spring2015Lecture 29 Convolutional Neural Networks -  Computer Vision Spring2015
Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015Jia-Bin Huang
 
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習台灣資料科學年會
 
Deep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksDeep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksChristian Perone
 
Machine Learning
Machine LearningMachine Learning
Machine Learningbutest
 
Enhancing Deep learning through Education / Training
Enhancing Deep learning through Education / TrainingEnhancing Deep learning through Education / Training
Enhancing Deep learning through Education / TrainingDr.Kumuda Gururao
 
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...hmouzak
 
Mastering the game of Go with deep neural networks and tree search (article o...
Mastering the game of Go with deep neural networks and tree search (article o...Mastering the game of Go with deep neural networks and tree search (article o...
Mastering the game of Go with deep neural networks and tree search (article o...Ilya Kuzovkin
 
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)eraser Juan José Calderón
 
Caffe - A deep learning framework (Ramin Fahimi)
Caffe - A deep learning framework (Ramin Fahimi)Caffe - A deep learning framework (Ramin Fahimi)
Caffe - A deep learning framework (Ramin Fahimi)irpycon
 
Deep learning in Computer Vision
Deep learning in Computer VisionDeep learning in Computer Vision
Deep learning in Computer VisionDavid Dao
 
Lukáš Vrábel - Deep Convolutional Neural Networks
Lukáš Vrábel - Deep Convolutional Neural NetworksLukáš Vrábel - Deep Convolutional Neural Networks
Lukáš Vrábel - Deep Convolutional Neural NetworksMachine Learning Prague
 
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...Article overview: Unsupervised Learning of Visual Structure Using Predictive ...
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...Ilya Kuzovkin
 
Deep Convolutional Neural Networks - Overview
Deep Convolutional Neural Networks - OverviewDeep Convolutional Neural Networks - Overview
Deep Convolutional Neural Networks - OverviewKeunwoo Choi
 
Introduction to Machine Learning @ Mooncascade ML Camp
Introduction to Machine Learning @ Mooncascade ML CampIntroduction to Machine Learning @ Mooncascade ML Camp
Introduction to Machine Learning @ Mooncascade ML CampIlya Kuzovkin
 
Introduction to CNN
Introduction to CNNIntroduction to CNN
Introduction to CNNShuai Zhang
 
Machine Learning and Data Mining: 03 Data Representation
Machine Learning and Data Mining: 03 Data RepresentationMachine Learning and Data Mining: 03 Data Representation
Machine Learning and Data Mining: 03 Data RepresentationPier Luca Lanzi
 
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...Levi Shapiro
 

Andere mochten auch (20)

Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015
Lecture 29 Convolutional Neural Networks -  Computer Vision Spring2015Lecture 29 Convolutional Neural Networks -  Computer Vision Spring2015
Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015
 
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習
[DSC 2016] 系列活動:李宏毅 / 一天搞懂深度學習
 
Deep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksDeep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural Networks
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Enhancing Deep learning through Education / Training
Enhancing Deep learning through Education / TrainingEnhancing Deep learning through Education / Training
Enhancing Deep learning through Education / Training
 
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...
Αναστασιάδης, Π. & Μουζάκης, Χ. (2014). Παιδαγωγική Αξιοποίηση των ΤΠΕ για τη...
 
Mastering the game of Go with deep neural networks and tree search (article o...
Mastering the game of Go with deep neural networks and tree search (article o...Mastering the game of Go with deep neural networks and tree search (article o...
Mastering the game of Go with deep neural networks and tree search (article o...
 
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)
New Pedagogies for Deep Learning. (2016). NPDL Global Report. (1st ed.)
 
Caffe - A deep learning framework (Ramin Fahimi)
Caffe - A deep learning framework (Ramin Fahimi)Caffe - A deep learning framework (Ramin Fahimi)
Caffe - A deep learning framework (Ramin Fahimi)
 
Deep learning in Computer Vision
Deep learning in Computer VisionDeep learning in Computer Vision
Deep learning in Computer Vision
 
Lukáš Vrábel - Deep Convolutional Neural Networks
Lukáš Vrábel - Deep Convolutional Neural NetworksLukáš Vrábel - Deep Convolutional Neural Networks
Lukáš Vrábel - Deep Convolutional Neural Networks
 
Hubba Deep Learning
Hubba Deep LearningHubba Deep Learning
Hubba Deep Learning
 
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...Article overview: Unsupervised Learning of Visual Structure Using Predictive ...
Article overview: Unsupervised Learning of Visual Structure Using Predictive ...
 
Deep Convolutional Neural Networks - Overview
Deep Convolutional Neural Networks - OverviewDeep Convolutional Neural Networks - Overview
Deep Convolutional Neural Networks - Overview
 
Introduction to Machine Learning @ Mooncascade ML Camp
Introduction to Machine Learning @ Mooncascade ML CampIntroduction to Machine Learning @ Mooncascade ML Camp
Introduction to Machine Learning @ Mooncascade ML Camp
 
Introduction to CNN
Introduction to CNNIntroduction to CNN
Introduction to CNN
 
Machine Learning and Data Mining: 03 Data Representation
Machine Learning and Data Mining: 03 Data RepresentationMachine Learning and Data Mining: 03 Data Representation
Machine Learning and Data Mining: 03 Data Representation
 
Homeroom 4 values ho
Homeroom 4 values hoHomeroom 4 values ho
Homeroom 4 values ho
 
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...
mHealth Israel_The Chinese Health Tech Startup and Investment Sector_Presenta...
 
Zaragoza turismo 181
Zaragoza turismo 181Zaragoza turismo 181
Zaragoza turismo 181
 

Ähnlich wie Deep Learning: Theory, History, State of the Art & Practical Tools

RNGPIT Lecture Series One: Introduction to Deep Learning
RNGPIT Lecture Series One: Introduction to Deep LearningRNGPIT Lecture Series One: Introduction to Deep Learning
RNGPIT Lecture Series One: Introduction to Deep LearningArjun Kava
 
AlphaZero and beyond: Polygames
AlphaZero and beyond: PolygamesAlphaZero and beyond: Polygames
AlphaZero and beyond: PolygamesOlivier Teytaud
 
Tears for quantum fears
Tears for quantum fearsTears for quantum fears
Tears for quantum fearsMark Carney
 
Lab 6 Neural Network
Lab 6 Neural NetworkLab 6 Neural Network
Lab 6 Neural NetworkKyle Villano
 
AI in Geosciences - Mineral Exploration and Beyond
AI in Geosciences - Mineral Exploration and BeyondAI in Geosciences - Mineral Exploration and Beyond
AI in Geosciences - Mineral Exploration and BeyondMax Howarth
 
Unraveling mysteries of the Universe at CERN, with OpenStack and Hadoop
Unraveling mysteries of the Universe at CERN, with OpenStack and HadoopUnraveling mysteries of the Universe at CERN, with OpenStack and Hadoop
Unraveling mysteries of the Universe at CERN, with OpenStack and HadoopPiotr Turek
 
Introduction to Neural Networks
Introduction to Neural NetworksIntroduction to Neural Networks
Introduction to Neural NetworksDatabricks
 
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdf
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdfRaspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdf
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdfSANTIAGO PABLO ALBERTO
 
How Neural Networks Think
How Neural Networks ThinkHow Neural Networks Think
How Neural Networks ThinkSarit Tamir
 
Quantum Computing algorithm and new business applications
Quantum Computing algorithm and new business applicationsQuantum Computing algorithm and new business applications
Quantum Computing algorithm and new business applicationsQCB-Conference
 
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...cscpconf
 
[CLASS 2014] Palestra Técnica - Jason Larsen
[CLASS 2014] Palestra Técnica - Jason Larsen[CLASS 2014] Palestra Técnica - Jason Larsen
[CLASS 2014] Palestra Técnica - Jason LarsenTI Safe
 
Ann model and its application
Ann model and its applicationAnn model and its application
Ann model and its applicationmilan107
 
Introduction to Neural Networks
Introduction to Neural NetworksIntroduction to Neural Networks
Introduction to Neural NetworksWoodridge Software
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep LearningAdam Rogers
 
Artificial Neural Network
Artificial Neural NetworkArtificial Neural Network
Artificial Neural NetworkDessy Amirudin
 
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...Simplilearn
 

Ähnlich wie Deep Learning: Theory, History, State of the Art & Practical Tools (20)

RNGPIT Lecture Series One: Introduction to Deep Learning
RNGPIT Lecture Series One: Introduction to Deep LearningRNGPIT Lecture Series One: Introduction to Deep Learning
RNGPIT Lecture Series One: Introduction to Deep Learning
 
AlphaZero and beyond: Polygames
AlphaZero and beyond: PolygamesAlphaZero and beyond: Polygames
AlphaZero and beyond: Polygames
 
Tears for quantum fears
Tears for quantum fearsTears for quantum fears
Tears for quantum fears
 
Lab 6 Neural Network
Lab 6 Neural NetworkLab 6 Neural Network
Lab 6 Neural Network
 
AI in Geosciences - Mineral Exploration and Beyond
AI in Geosciences - Mineral Exploration and BeyondAI in Geosciences - Mineral Exploration and Beyond
AI in Geosciences - Mineral Exploration and Beyond
 
Blue Brain
Blue BrainBlue Brain
Blue Brain
 
Unraveling mysteries of the Universe at CERN, with OpenStack and Hadoop
Unraveling mysteries of the Universe at CERN, with OpenStack and HadoopUnraveling mysteries of the Universe at CERN, with OpenStack and Hadoop
Unraveling mysteries of the Universe at CERN, with OpenStack and Hadoop
 
Artificial Neural networks
Artificial Neural networksArtificial Neural networks
Artificial Neural networks
 
Introduction to Neural Networks
Introduction to Neural NetworksIntroduction to Neural Networks
Introduction to Neural Networks
 
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdf
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdfRaspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdf
Raspberry Pi: Python todo en uno para dummies por John Shovic parte 2.pdf
 
How Neural Networks Think
How Neural Networks ThinkHow Neural Networks Think
How Neural Networks Think
 
Quantum Computing algorithm and new business applications
Quantum Computing algorithm and new business applicationsQuantum Computing algorithm and new business applications
Quantum Computing algorithm and new business applications
 
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...
Economic Load Dispatch (ELD), Economic Emission Dispatch (EED), Combined Econ...
 
[CLASS 2014] Palestra Técnica - Jason Larsen
[CLASS 2014] Palestra Técnica - Jason Larsen[CLASS 2014] Palestra Técnica - Jason Larsen
[CLASS 2014] Palestra Técnica - Jason Larsen
 
Ann model and its application
Ann model and its applicationAnn model and its application
Ann model and its application
 
Introduction to Neural Networks
Introduction to Neural NetworksIntroduction to Neural Networks
Introduction to Neural Networks
 
Introduction to Deep Learning
Introduction to Deep LearningIntroduction to Deep Learning
Introduction to Deep Learning
 
Artificial Neural Network
Artificial Neural NetworkArtificial Neural Network
Artificial Neural Network
 
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...
Deep Learning Tutorial | Deep Learning Tutorial For Beginners | What Is Deep ...
 
Java Programming: Loops
Java Programming: LoopsJava Programming: Loops
Java Programming: Loops
 

Mehr von Ilya Kuzovkin

Understanding Information Processing in Human Brain by Interpreting Machine L...
Understanding Information Processing in Human Brain by Interpreting Machine L...Understanding Information Processing in Human Brain by Interpreting Machine L...
Understanding Information Processing in Human Brain by Interpreting Machine L...Ilya Kuzovkin
 
The Brain and the Modern AI: Drastic Differences and Curious Similarities
The Brain and the Modern AI: Drastic Differences and Curious SimilaritiesThe Brain and the Modern AI: Drastic Differences and Curious Similarities
The Brain and the Modern AI: Drastic Differences and Curious SimilaritiesIlya Kuzovkin
 
Intuitive Intro to Gödel's Incompleteness Theorem
Intuitive Intro to Gödel's Incompleteness TheoremIntuitive Intro to Gödel's Incompleteness Theorem
Intuitive Intro to Gödel's Incompleteness TheoremIlya Kuzovkin
 
Paper overview: "Deep Residual Learning for Image Recognition"
Paper overview: "Deep Residual Learning for Image Recognition"Paper overview: "Deep Residual Learning for Image Recognition"
Paper overview: "Deep Residual Learning for Image Recognition"Ilya Kuzovkin
 
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...Ilya Kuzovkin
 
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?Ilya Kuzovkin
 
Neural Turing Machines
Neural Turing MachinesNeural Turing Machines
Neural Turing MachinesIlya Kuzovkin
 
Neuroimaging: Intracortical, fMRI, EEG
Neuroimaging: Intracortical, fMRI, EEGNeuroimaging: Intracortical, fMRI, EEG
Neuroimaging: Intracortical, fMRI, EEGIlya Kuzovkin
 
Article Overview "Reach and grasp by people with tetraplegia using a neurally...
Article Overview "Reach and grasp by people with tetraplegia using a neurally...Article Overview "Reach and grasp by people with tetraplegia using a neurally...
Article Overview "Reach and grasp by people with tetraplegia using a neurally...Ilya Kuzovkin
 
Introduction to Computing on GPU
Introduction to Computing on GPUIntroduction to Computing on GPU
Introduction to Computing on GPUIlya Kuzovkin
 
Soft Introduction to Brain-Computer Interfaces and Machine Learning
Soft Introduction to Brain-Computer Interfaces and Machine LearningSoft Introduction to Brain-Computer Interfaces and Machine Learning
Soft Introduction to Brain-Computer Interfaces and Machine LearningIlya Kuzovkin
 
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer Interfaces
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer InterfacesIlya Kuzovkin - Adaptive Interactive Learning for Brain-Computer Interfaces
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer InterfacesIlya Kuzovkin
 

Mehr von Ilya Kuzovkin (12)

Understanding Information Processing in Human Brain by Interpreting Machine L...
Understanding Information Processing in Human Brain by Interpreting Machine L...Understanding Information Processing in Human Brain by Interpreting Machine L...
Understanding Information Processing in Human Brain by Interpreting Machine L...
 
The Brain and the Modern AI: Drastic Differences and Curious Similarities
The Brain and the Modern AI: Drastic Differences and Curious SimilaritiesThe Brain and the Modern AI: Drastic Differences and Curious Similarities
The Brain and the Modern AI: Drastic Differences and Curious Similarities
 
Intuitive Intro to Gödel's Incompleteness Theorem
Intuitive Intro to Gödel's Incompleteness TheoremIntuitive Intro to Gödel's Incompleteness Theorem
Intuitive Intro to Gödel's Incompleteness Theorem
 
Paper overview: "Deep Residual Learning for Image Recognition"
Paper overview: "Deep Residual Learning for Image Recognition"Paper overview: "Deep Residual Learning for Image Recognition"
Paper overview: "Deep Residual Learning for Image Recognition"
 
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...
Article overview: Deep Neural Networks Reveal a Gradient in the Complexity of...
 
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?
NIPS2014 Article Overview: Do Deep Nets Really Need to be Deep?
 
Neural Turing Machines
Neural Turing MachinesNeural Turing Machines
Neural Turing Machines
 
Neuroimaging: Intracortical, fMRI, EEG
Neuroimaging: Intracortical, fMRI, EEGNeuroimaging: Intracortical, fMRI, EEG
Neuroimaging: Intracortical, fMRI, EEG
 
Article Overview "Reach and grasp by people with tetraplegia using a neurally...
Article Overview "Reach and grasp by people with tetraplegia using a neurally...Article Overview "Reach and grasp by people with tetraplegia using a neurally...
Article Overview "Reach and grasp by people with tetraplegia using a neurally...
 
Introduction to Computing on GPU
Introduction to Computing on GPUIntroduction to Computing on GPU
Introduction to Computing on GPU
 
Soft Introduction to Brain-Computer Interfaces and Machine Learning
Soft Introduction to Brain-Computer Interfaces and Machine LearningSoft Introduction to Brain-Computer Interfaces and Machine Learning
Soft Introduction to Brain-Computer Interfaces and Machine Learning
 
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer Interfaces
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer InterfacesIlya Kuzovkin - Adaptive Interactive Learning for Brain-Computer Interfaces
Ilya Kuzovkin - Adaptive Interactive Learning for Brain-Computer Interfaces
 

Kürzlich hochgeladen

6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPRPirithiRaju
 
Abnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxAbnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxzeus70441
 
Probability.pptx, Types of Probability, UG
Probability.pptx, Types of Probability, UGProbability.pptx, Types of Probability, UG
Probability.pptx, Types of Probability, UGSoniaBajaj10
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Sérgio Sacani
 
Pests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPirithiRaju
 
dll general biology week 1 - Copy.docx
dll general biology   week 1 - Copy.docxdll general biology   week 1 - Copy.docx
dll general biology week 1 - Copy.docxkarenmillo
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxpriyankatabhane
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxMedical College
 
final waves properties grade 7 - third quarter
final waves properties grade 7 - third quarterfinal waves properties grade 7 - third quarter
final waves properties grade 7 - third quarterHanHyoKim
 
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2AuEnriquezLontok
 
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdf
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdfKDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdf
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdfGABYFIORELAMALPARTID1
 
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPRPirithiRaju
 
BACTERIAL SECRETION SYSTEM by Dr. Chayanika Das
BACTERIAL SECRETION SYSTEM by Dr. Chayanika DasBACTERIAL SECRETION SYSTEM by Dr. Chayanika Das
BACTERIAL SECRETION SYSTEM by Dr. Chayanika DasChayanika Das
 
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika Das
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika DasBACTERIAL DEFENSE SYSTEM by Dr. Chayanika Das
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika DasChayanika Das
 
whole genome sequencing new and its types including shortgun and clone by clone
whole genome sequencing new  and its types including shortgun and clone by clonewhole genome sequencing new  and its types including shortgun and clone by clone
whole genome sequencing new and its types including shortgun and clone by clonechaudhary charan shingh university
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests GlycosidesNandakishor Bhaurao Deshmukh
 
DETECTION OF MUTATION BY CLB METHOD.pptx
DETECTION OF MUTATION BY CLB METHOD.pptxDETECTION OF MUTATION BY CLB METHOD.pptx
DETECTION OF MUTATION BY CLB METHOD.pptx201bo007
 

Kürzlich hochgeladen (20)

6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
 
Abnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxAbnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptx
 
Probability.pptx, Types of Probability, UG
Probability.pptx, Types of Probability, UGProbability.pptx, Types of Probability, UG
Probability.pptx, Types of Probability, UG
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
 
Let’s Say Someone Did Drop the Bomb. Then What?
Let’s Say Someone Did Drop the Bomb. Then What?Let’s Say Someone Did Drop the Bomb. Then What?
Let’s Say Someone Did Drop the Bomb. Then What?
 
Ultrastructure and functions of Chloroplast.pptx
Ultrastructure and functions of Chloroplast.pptxUltrastructure and functions of Chloroplast.pptx
Ultrastructure and functions of Chloroplast.pptx
 
Interferons.pptx.
Interferons.pptx.Interferons.pptx.
Interferons.pptx.
 
Pests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPR
 
dll general biology week 1 - Copy.docx
dll general biology   week 1 - Copy.docxdll general biology   week 1 - Copy.docx
dll general biology week 1 - Copy.docx
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptx
 
final waves properties grade 7 - third quarter
final waves properties grade 7 - third quarterfinal waves properties grade 7 - third quarter
final waves properties grade 7 - third quarter
 
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
 
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdf
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdfKDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdf
KDIGO-2023-CKD-Guideline-Public-Review-Draft_5-July-2023.pdf
 
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
 
BACTERIAL SECRETION SYSTEM by Dr. Chayanika Das
BACTERIAL SECRETION SYSTEM by Dr. Chayanika DasBACTERIAL SECRETION SYSTEM by Dr. Chayanika Das
BACTERIAL SECRETION SYSTEM by Dr. Chayanika Das
 
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika Das
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika DasBACTERIAL DEFENSE SYSTEM by Dr. Chayanika Das
BACTERIAL DEFENSE SYSTEM by Dr. Chayanika Das
 
whole genome sequencing new and its types including shortgun and clone by clone
whole genome sequencing new  and its types including shortgun and clone by clonewhole genome sequencing new  and its types including shortgun and clone by clone
whole genome sequencing new and its types including shortgun and clone by clone
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
 
DETECTION OF MUTATION BY CLB METHOD.pptx
DETECTION OF MUTATION BY CLB METHOD.pptxDETECTION OF MUTATION BY CLB METHOD.pptx
DETECTION OF MUTATION BY CLB METHOD.pptx
 

Deep Learning: Theory, History, State of the Art & Practical Tools