SlideShare a Scribd company logo
1 of 88
Download to read offline
Catalit LLC
INTRODUCTION
TO DEEP LEARNING
Francesco Mosconi
Data Weekends Catalit LLC
Catalit LLC
www.dataweekends.com/keras
Catalit LLC
MORNING
• Introduce Deep Learning
• Shallow Models
• Deep Models
• Convolutional Models
Catalit LLC
WHATTO EXPECT
• Accelerated learning
• Interactive
• Fun / Discovery
• Take notes
Catalit LLC
SUPERVISED LEARNING
Catalit LLC
Catalit LLC
Catalit LLC
Catalit LLC
Catalit LLC
LEARNING
Learning is not memorizing. It is generalizing the
conclusions to previously unseen examples
Catalit LLC
SUPERVISED LEARNING
Feature 1 Feature 2 Label
1 -0.14 0.18 Cat
2 1.07 -0.75 Dog
3 -2.58 0.63 Cat
… … … …
Catalit LLC
SUPERVISED LEARNING
Catalit LLC
PREDICTIONTYPE
http://i.ytimg.com/vi/WX0hnuniLpI/maxresdefault.jpg
Catalit LLC
PREDICTIONTYPE
CATEGORICAL CONTINUOUS
Eye colors Height of children
Courses at university Weight of cars
Highest degree Speed of the train
Gender Temperature
Spam or not Stock price
Catalit LLC
SUPERVISED LEARNING
CATEGORICAL CONTINUOUS
SUPERVISED CLASSIFICATION REGRESSION
Catalit LLC
LINEAR REGRESSION
Data Weekends Catalit LLC
Catalit LLC
Size in feet2 (x) Price in 1000$ (y)
2104 460
1416 232
1534 315
852 178
… …
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
y = func(X)
Catalit LLC
Size in feet2 (x) Price in 1000$ (y)
2104 460
1416 232
1534 315
852 178
… …
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Hypothesis
ŷ = b+Xw
Catalit LLC
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Residual: yi - ŷi
ŷ = b+Xw
Catalit LLC
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Mean Squared Error
Residual: yi - ŷi
ŷ = b+Xw
COST FUNCTION
Catalit LLC
COST FUNCTION
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
• Fixed data
• Fixed hypothesis
• Cost depends on values of
parameters
Catalit LLC
COST FUNCTION
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
• Fixed data
• Fixed hypothesis
• Cost depends on values of
parameters
Catalit LLC
COST FUNCTION
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
• Fixed data
• Fixed hypothesis
• Cost depends on values of
parameters
Catalit LLC
COST FUNCTION
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
• Fixed data
• Fixed hypothesis
• Cost depends on values of
parameters
Catalit LLC
COST FUNCTION
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
• Fixed data
• Fixed hypothesis
• Cost depends on values of
parameters
Catalit LLC
COST FUNCTION
Cost
0
1
2
3
4
Parameter
0 1 2 3 4
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Catalit LLC
OPTIMIZATION
Cost
0
1
2
3
4
Parameter
0 1 2 3 4
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Catalit LLC
OPTIMIZATION
Cost
0
1
2
3
4
Parameter
0 1 2 3 4
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Catalit LLC
OPTIMIZATION
Cost
0
1
2
3
4
Parameter
0 1 2 3 4
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Catalit LLC
OPTIMIZATION
Cost
0
4
8
12
16
Parameter
0 2 4 5 7
Pricein1000$(y)
100
200
300
400
500
Size in feet2 (x)
800 1150 1500 1850 2200
Catalit LLC
BEST MODEL
• Values of b and w that

give MINIMUM COST
Pricein
1000$
(y)
100
300
500
Size in feet2 (x)
800 1500 2200
Catalit LLC
MULTIVARIATE
Catalit LLC
CLASSIFICATION
Data Weekends Catalit LLC
Catalit LLC
BINARY CLASSIFICATION
Age Gender
Annual
Salary
Months in
residence
Months in
job
Current
Debt
Paid off
credit
Client 1 23 M $30,000 36 12 $5,000 Yes
Client 2 30 F $45,000 12 12 $1,000 Yes
Client 3 19 M $15,000 3 1 $10,000 No
Features Labels
Data Point
Catalit LLC
LOGISTIC REGRESSION
Catalit LLC
PERFORMANCE
Data Weekends Catalit LLC
Catalit LLC
BASELINE
• Know the score of the simplest model
• Compare your score with simplest model score
Catalit LLC
TRAIN /TEST
Model
Train
Model
Measure
performance
AllData
Typical values of test size: [10% - 50%]
Train
Test
Catalit LLC
REGRESSION SCORE
https://en.wikipedia.org/wiki/Coefficient_of_determination#/media/File:Coefficient_of_Determination.svg
Model
Catalit LLC
CONFUSION MATRIX
• Accuracy: Overall, how often is it correct?
• (TP +TN) / total
Test Negative Test Positive
Condition
Negative
TRUE NEGATIVE
FALSE POSITIVE
(Type I error)
Condition
Positive
FALSE NEGATIVE
(Type II error)
TRUE POSITIVE
Catalit LLC
CLASSIFICATION SCORES
• Accuracy: Overall, how often correct?
• (TP +TN) / total
• Precision: Test positive, how often prediction correct?
• TP / test yes
• Recall: Actual value positive, how often prediction correct?
• TP / actual yes
Test Negative Test Positive
Condition
Negative
TRUE NEGATIVE
FALSE POSITIVE
(Type I error)
Condition
Positive
FALSE NEGATIVE
(Type II error)
TRUE POSITIVE
Catalit LLC
LAB 01
Catalit LLC
DEEPER NETWORKS
Catalit LLC
Caption generation
Object recognition
http://www.image-net.org/challenges/LSVRC/
Catalit LLC
APPLICATIONS
Speech recognition and synthesis
http://venturebeat.com/2015
Catalit LLC
APPLICATIONS
Neural MachineTranslation
https://devblogs.nvidia.com/parallelforall/ https://smallbiztrends.com/2017/
Catalit LLC
Catalit LLC
https://deepmind.com www.nervanasys.com
Catalit LLC
https://www.pcper.com/category/tags/deep-neural-network
Catalit LLC
REASONS
Deep Learning
Traditional
Machine Learning
# training data
Performance
Catalit LLC
REASONS
Traditional
Machine Learning
# training data
Performance
Feature
extract
OutputFeatures
Shallow
ML algo
Input Deep Learning Output
Input
Deep Learning
Catalit LLC
FULLY CONNECTED
…
xN
x1
b
Input Output
b
b
…
b
b
Layer 1 Layer L
b
b
b
…
b
Layer 2
y
…
Catalit LLC
DEFINETHE NETWORK
• How many input units?
• How many output units?
• How many parameters?
• Which activation function?
Catalit LLC
REGRESSION
…
xN
x1
b
Input Output
b
b
…
b
Layer 1 Last layer
b
b
b
…
b
Layer 2
…
b
b
b
…
b
y
b
Relu Relu Relu
Catalit LLC
CLASSIFICATION
…
xN
x1
b
Input
Output
b
b
…
b
Layer 1 Last layer
b
b
b
…
b
Layer 2
…
b
b
b
…
b
y
b
Relu Relu Relu
Catalit LLC
MULTI CLASS
…
xN
x1
b
Input
Output
b
b
…
b
Layer 1 Last layer
b
b
b
…
b
Layer 2
…
b
b
b
…
b
A B C
1 0 0
1 0 0
0 1 0
0 0 1
Mutuall
y1
y2
y3
yJ
softmax
Relu Relu Relu
Catalit LLC
ACTIVATION FUNCTIONS
Catalit LLC
EPOCHS
Catalit LLC
MASTER FORMULA
model = data + structure + loss + optimizer
Catalit LLC
LAB 02
Catalit LLC
IMAGES
Catalit LLC
UNSTRUCTURED DATA
• Images
• Sound
• Text
• …
Feature 1 Feature 2 Feature 3
1 -0.7 1.34 -0.2
2 0.49 -1.44 -0.06
3 -1.36 -1.08 -1.15
… … … …
?
Catalit LLC
FEATURE ENGINEERING
http://www.privacysurgeon.org/
Distance 1 Distance 2 …
1 -0.7 1.34 …
2 0.49 -1.44 …
3 -1.36 -1.08 …
… … … …
Catalit LLC
FEATURE ENGINEERING
• FFT
• Wavelets
• …
Feature 1 Feature 2 …
1 -0.14 0.18 …
2 1.07 -0.75 …
3 -2.58 0.63 …
… … … …
Catalit LLC
FEATURE ENGINEERING
• Parts of speech
• Words frequency
• Embeddings
Catalit LLC
GRAYSCALE
Catalit LLC
MNIST
5 0 4 1
Catalit LLC
MNIST
Catalit LLC
MNIST
Catalit LLC
MNIST0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0.5 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 1 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0.50.50.50.50.5 1 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0.5 1 1 0 0 0 0 0 1 1 0 0 1 1 0.5 0 0 0 0 0 0
0 0 0 0 0 0 0.5 1 1 0 0 0 0 0 1 1 0 0 0 0 0.5 1 1 1 0.5 0 0 0
0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0.50.5 0 0 0 0
0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
28 x 28 = 784
Catalit LLC
MNIST0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0.5 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 1 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0.50.50.50.50.5 1 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0.5 1 1 0 0 0 0 0 1 1 0 0 1 1 0.5 0 0 0 0 0 0
0 0 0 0 0 0 0.5 1 1 0 0 0 0 0 1 1 0 0 0 0 0.5 1 1 1 0.5 0 0 0
0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0.50.5 0 0 0 0
0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Catalit LLC
MNIST
0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 .5 .5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 …
28 x 28 image => 784 input pixels array
Catalit LLC
FULLY CONNECTED
P
I
X
E
L
S
… …
…
…
0
1
9
Probability
of class
784 Inputs
10 outputs
with
SOFTMAX
Catalit LLC
CONVOLUTIONAL
Catalit LLC
LOCAL PATTERNS
• Fourier coefficients
• Wavelets
• Histogram of Oriented Gradients
(HOG)
• Speeded Up Robust Features (SURF)
• Local Binary Patterns (LBP)
• Color histograms
• …
Catalit LLC
TENSORS
Order Name Example
0 Scalar 3
1 Vector [4, 5, 0, 3, 1, 4, 5]
2 Matrix
[[0, 1, 0],

[5, 0, 2]]
3 Tensor
[[[0, 1, 0],

[5, 0, 2]],
[[1, 2, 4],

[8, 3, 1]]]
Catalit LLC
2 D CONV
1 -1 -1
-1 1 -1
-1 -1 1
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
=
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
Catalit LLC
1 -1 -1
-1 1 -1
-1 -1 1
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
=
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
-1 -1 1
-1 1 -1
1 -1 -1
1 -1 1
-1 1 -1
1 -1 1
0.33 -0.55 0.11 -0.11 0.11 -0.55 0.33
-0.55 0.55 -0.55 0.33 -0.55 0.55 -0.55
0.11 -0.55 0.55 -0.77 0.55 -0.55 0.11
-0.11 0.33 -0.77 1.00 -0.77 0.33 -0.11
0.11 -0.55 0.55 -0.77 0.55 -0.55 0.11
-0.55 0.55 -0.55 0.33 -0.55 0.55 -0.55
0.33 -0.55 0.11 -0.11 0.11 -0.55 0.33
=
=
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
Catalit LLC
CONVOLUTION LAYER
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
0.33 -0.55 0.11 -0.11 0.11 -0.55 0.33
-0.55 0.55 -0.55 0.33 -0.55 0.55 -0.55
0.11 -0.55 0.55 -0.77 0.55 -0.55 0.11
-0.11 0.33 -0.77 1.00 -0.77 0.33 -0.11
0.11 -0.55 0.55 -0.77 0.55 -0.55 0.11
-0.55 0.55 -0.55 0.33 -0.55 0.55 -0.55
0.33 -0.55 0.11 -0.11 0.11 -0.55 0.33
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
1 -1 -1
-1 1 -1
-1 -1 1
1 -1 1
-1 1 -1
1 -1 1
-1 -1 1
-1 1 -1
1 -1 -1
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
Number of Filters Output Channels
Catalit LLC
INPUTTENSOR
Input: order 4 tensor
(N, H, W, C)
(60000, 28, 28, 1)
MNIST training set
N: Number of images
H: Height of image
W: Width of image
C: Number of color channels
Catalit LLC
1.00 0.33 0.55 0.33
0.33
MAX POOLING
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
maximum
Catalit LLC
1.00 0.33 0.55 0.33
0.33 1.00 0.33 0.55
0.55 0.33 1.00 0.11
0.33 0.55 0.11 0.77
MAX POOLING
0.77 -0.11 0.11 0.33 0.55 -0.11 0.33
-0.11 1.00 -0.11 0.33 -0.11 0.11 -0.11
0.11 -0.11 1.00 -0.33 0.11 -0.11 0.55
0.33 0.33 -0.33 0.55 -0.33 0.33 0.33
0.55 -0.11 0.11 -0.33 1.00 -0.11 0.11
-0.11 0.11 -0.11 0.33 -0.11 1.00 -0.11
0.33 -0.11 0.55 0.33 0.11 -0.11 0.77
Catalit LLC
FEATURE EXTRACTION
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
Convolution
ReLU
Pooling
Convolution
ReLU
Convolution
ReLU
Pooling
1.00 0.55
0.55 1.00
0.55 1.00
1.00 0.55
1.00 0.55
0.55 0.55
Layers can be repeated several (or many) times.
Catalit LLC
FLATTEN1.00 0.55
0.55 1.00
0.55 1.00
1.00 0.55
1.00 0.55
0.55 0.55
1.00
0.55
0.55
1.00
1.00
0.55
0.55
0.55
0.55
1.00
1.00
0.55
Catalit LLC
FULLY CONNECTED LAYER
X
O
1.00 0.55
0.55 1.00
0.55 1.00
1.00 0.55
1.00 0.55
0.55 0.55
1.00
0.55
0.55
1.00
1.00
0.55
0.55
0.55
0.55
1.00
1.00
0.55
Catalit LLC
-1 -1 -1 -1 -1 -1 -1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 -1 -1 1 -1 -1 -1 -1
-1 -1 -1 1 -1 1 -1 -1 -1
-1 -1 1 -1 -1 -1 1 -1 -1
-1 1 -1 -1 -1 -1 -1 1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1
Convolution
ReLU
Pooling
Convolution
ReLU
Convolution
ReLU
Pooling
Fully
connected
Fully
connected
X
O
ALLTOGETHER
Catalit LLC
LAB 03
Catalit LLC
THANKYOU!
Francesco Mosconi
@framosconis info@catalit.com
www.dataweekends.com www.catalit.com
Data Weekends Catalit LLC

More Related Content

What's hot

Deep Learning con CNTK by Pablo Doval
Deep Learning con CNTK by Pablo DovalDeep Learning con CNTK by Pablo Doval
Deep Learning con CNTK by Pablo DovalPlain Concepts
 
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...Kamel Mansouri
 
How To Deliver a 5-Star Experience for IoT-Enabled Services
How To Deliver a 5-Star Experience for IoT-Enabled ServicesHow To Deliver a 5-Star Experience for IoT-Enabled Services
How To Deliver a 5-Star Experience for IoT-Enabled ServicesAppDynamics
 
Finding the Needle in the IP Stack
Finding the Needle in the IP StackFinding the Needle in the IP Stack
Finding the Needle in the IP StackSven Krasser
 
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputs
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputsTruth table, Karnaugh map & logic circuit with 5 outputs and 8 inputs
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputsAbir Chowdhury
 
AWS Simple Workflow: Distributed Out of the Box! - Morning@Lohika
AWS Simple Workflow: Distributed Out of the Box! - Morning@LohikaAWS Simple Workflow: Distributed Out of the Box! - Morning@Lohika
AWS Simple Workflow: Distributed Out of the Box! - Morning@LohikaSerhiy Batyuk
 
Estado del Arte de la IA
Estado del Arte de la IAEstado del Arte de la IA
Estado del Arte de la IAPlain Concepts
 
Digital Product Design
Digital Product DesignDigital Product Design
Digital Product DesignAndy Budd
 
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minar
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minarCespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minar
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minarCanal Dos Concursos
 

What's hot (12)

Soril 32 dun
Soril 32 dunSoril 32 dun
Soril 32 dun
 
Deep Learning con CNTK by Pablo Doval
Deep Learning con CNTK by Pablo DovalDeep Learning con CNTK by Pablo Doval
Deep Learning con CNTK by Pablo Doval
 
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...
In-silico study of ToxCast GPCR assays by quantitative structure-activity rel...
 
How To Deliver a 5-Star Experience for IoT-Enabled Services
How To Deliver a 5-Star Experience for IoT-Enabled ServicesHow To Deliver a 5-Star Experience for IoT-Enabled Services
How To Deliver a 5-Star Experience for IoT-Enabled Services
 
Finding the Needle in the IP Stack
Finding the Needle in the IP StackFinding the Needle in the IP Stack
Finding the Needle in the IP Stack
 
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputs
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputsTruth table, Karnaugh map & logic circuit with 5 outputs and 8 inputs
Truth table, Karnaugh map & logic circuit with 5 outputs and 8 inputs
 
AWS Simple Workflow: Distributed Out of the Box! - Morning@Lohika
AWS Simple Workflow: Distributed Out of the Box! - Morning@LohikaAWS Simple Workflow: Distributed Out of the Box! - Morning@Lohika
AWS Simple Workflow: Distributed Out of the Box! - Morning@Lohika
 
Mini Project- ROM Based Sine Wave Generator
Mini Project- ROM Based Sine Wave GeneratorMini Project- ROM Based Sine Wave Generator
Mini Project- ROM Based Sine Wave Generator
 
1.1
1.11.1
1.1
 
Estado del Arte de la IA
Estado del Arte de la IAEstado del Arte de la IA
Estado del Arte de la IA
 
Digital Product Design
Digital Product DesignDigital Product Design
Digital Product Design
 
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minar
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minarCespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minar
Cespe 2013 --inpi_-_nível_intermediário_-_gabarito_preli minar
 

Similar to Introduction to Keras / Global Artificial Intelligence Conference / Santa Clara 2018

Norma 2215105030(tgas 3)
Norma 2215105030(tgas 3)Norma 2215105030(tgas 3)
Norma 2215105030(tgas 3)Norma Mahmudah
 
Informe simulacion digital yolfred uzcategui - 25.242.800
Informe simulacion digital   yolfred uzcategui - 25.242.800Informe simulacion digital   yolfred uzcategui - 25.242.800
Informe simulacion digital yolfred uzcategui - 25.242.800Yolfred Uzcategui
 
알고리즘,자료구조 강의 제안서pdf.pdf
알고리즘,자료구조 강의 제안서pdf.pdf알고리즘,자료구조 강의 제안서pdf.pdf
알고리즘,자료구조 강의 제안서pdf.pdfssuser82c38d
 
Not Dead Yet: Designing Great Experiences with Bad Data
Not Dead Yet: Designing Great Experiences with Bad DataNot Dead Yet: Designing Great Experiences with Bad Data
Not Dead Yet: Designing Great Experiences with Bad DataSonia Koesterer
 
왕비를 구하기 위한 용사의 여정 Q-Learning
왕비를 구하기 위한 용사의 여정 Q-Learning왕비를 구하기 위한 용사의 여정 Q-Learning
왕비를 구하기 위한 용사의 여정 Q-LearningHyunjong Lee
 
Quadro valor lugar milhões
Quadro valor lugar milhõesQuadro valor lugar milhões
Quadro valor lugar milhõesBianca Zanocini
 
Muestreo practica de maíz todas
Muestreo practica  de maíz todasMuestreo practica  de maíz todas
Muestreo practica de maíz todasAnerol Mtz
 
ふわふわディスプレイの開発(FAN2011)
ふわふわディスプレイの開発(FAN2011)ふわふわディスプレイの開発(FAN2011)
ふわふわディスプレイの開発(FAN2011)Yusuke Tamura
 
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기Amazon Web Services Korea
 
Let´s Fight for Human Unintelligence
Let´s Fight for Human UnintelligenceLet´s Fight for Human Unintelligence
Let´s Fight for Human UnintelligenceRobin-Boris Kasper
 
Ke hoach thi cong thang 9
Ke hoach thi cong thang 9Ke hoach thi cong thang 9
Ke hoach thi cong thang 9Bước Bên Aj
 

Similar to Introduction to Keras / Global Artificial Intelligence Conference / Santa Clara 2018 (20)

Counting Bits
Counting BitsCounting Bits
Counting Bits
 
Norma 2215105030(tgas 3)
Norma 2215105030(tgas 3)Norma 2215105030(tgas 3)
Norma 2215105030(tgas 3)
 
Informe simulacion digital yolfred uzcategui - 25.242.800
Informe simulacion digital   yolfred uzcategui - 25.242.800Informe simulacion digital   yolfred uzcategui - 25.242.800
Informe simulacion digital yolfred uzcategui - 25.242.800
 
plantilla sistema numeracion
plantilla sistema numeracionplantilla sistema numeracion
plantilla sistema numeracion
 
알고리즘,자료구조 강의 제안서pdf.pdf
알고리즘,자료구조 강의 제안서pdf.pdf알고리즘,자료구조 강의 제안서pdf.pdf
알고리즘,자료구조 강의 제안서pdf.pdf
 
CAR Email 4.11.03 (b)
CAR Email 4.11.03 (b)CAR Email 4.11.03 (b)
CAR Email 4.11.03 (b)
 
Not Dead Yet: Designing Great Experiences with Bad Data
Not Dead Yet: Designing Great Experiences with Bad DataNot Dead Yet: Designing Great Experiences with Bad Data
Not Dead Yet: Designing Great Experiences with Bad Data
 
왕비를 구하기 위한 용사의 여정 Q-Learning
왕비를 구하기 위한 용사의 여정 Q-Learning왕비를 구하기 위한 용사의 여정 Q-Learning
왕비를 구하기 위한 용사의 여정 Q-Learning
 
Image pacman
Image pacmanImage pacman
Image pacman
 
SXSW
SXSWSXSW
SXSW
 
SXSW
SXSWSXSW
SXSW
 
Quadro valor lugar milhões
Quadro valor lugar milhõesQuadro valor lugar milhões
Quadro valor lugar milhões
 
Muestreo practica de maíz todas
Muestreo practica  de maíz todasMuestreo practica  de maíz todas
Muestreo practica de maíz todas
 
merdian layout-5K hubbell - T4
merdian layout-5K hubbell - T4merdian layout-5K hubbell - T4
merdian layout-5K hubbell - T4
 
CAR Email 4.11.03 (a)
CAR Email 4.11.03 (a)CAR Email 4.11.03 (a)
CAR Email 4.11.03 (a)
 
CAR Email 5.22.03 (b)
CAR Email 5.22.03 (b)CAR Email 5.22.03 (b)
CAR Email 5.22.03 (b)
 
ふわふわディスプレイの開発(FAN2011)
ふわふわディスプレイの開発(FAN2011)ふわふわディスプレイの開発(FAN2011)
ふわふわディスプレイの開発(FAN2011)
 
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기
[AWS Dev Day] 실습 워크샵 | AWS IoT와 SageMaker를 활용한 예지 정비의 구현하기
 
Let´s Fight for Human Unintelligence
Let´s Fight for Human UnintelligenceLet´s Fight for Human Unintelligence
Let´s Fight for Human Unintelligence
 
Ke hoach thi cong thang 9
Ke hoach thi cong thang 9Ke hoach thi cong thang 9
Ke hoach thi cong thang 9
 

More from Francesco Mosconi

Tensorflow 2.0 SF Python Meetup November 2019
Tensorflow 2.0 SF Python Meetup November 2019Tensorflow 2.0 SF Python Meetup November 2019
Tensorflow 2.0 SF Python Meetup November 2019Francesco Mosconi
 
Deep Learning in 2019 SF Python October
Deep Learning in 2019 SF Python OctoberDeep Learning in 2019 SF Python October
Deep Learning in 2019 SF Python OctoberFrancesco Mosconi
 
Tensorflow 2.0 and Keras: What's new, what's shared, what's different
Tensorflow 2.0 and Keras: What's new, what's shared, what's differentTensorflow 2.0 and Keras: What's new, what's shared, what's different
Tensorflow 2.0 and Keras: What's new, what's shared, what's differentFrancesco Mosconi
 
Python for Machine Learning and Deep Learning
Python for Machine Learning and Deep LearningPython for Machine Learning and Deep Learning
Python for Machine Learning and Deep LearningFrancesco Mosconi
 
Intro to deep learning Python Meetup
Intro to deep learning Python MeetupIntro to deep learning Python Meetup
Intro to deep learning Python MeetupFrancesco Mosconi
 
Tensorflow 2.0 and Keras ODSC Jan 2019
Tensorflow 2.0 and Keras ODSC Jan 2019Tensorflow 2.0 and Keras ODSC Jan 2019
Tensorflow 2.0 and Keras ODSC Jan 2019Francesco Mosconi
 
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018Francesco Mosconi
 
Machine Learning: Techniques, Best Practices and Practical Application
Machine Learning: Techniques, Best Practices and Practical ApplicationMachine Learning: Techniques, Best Practices and Practical Application
Machine Learning: Techniques, Best Practices and Practical ApplicationFrancesco Mosconi
 
Python libraries for Machine Learning and Deep Learning
Python libraries for Machine Learning and Deep LearningPython libraries for Machine Learning and Deep Learning
Python libraries for Machine Learning and Deep LearningFrancesco Mosconi
 
Intro to scikit learn may 2017
Intro to scikit learn may 2017Intro to scikit learn may 2017
Intro to scikit learn may 2017Francesco Mosconi
 

More from Francesco Mosconi (13)

Tensorflow 2.0 SF Python Meetup November 2019
Tensorflow 2.0 SF Python Meetup November 2019Tensorflow 2.0 SF Python Meetup November 2019
Tensorflow 2.0 SF Python Meetup November 2019
 
Deep Learning in 2019 SF Python October
Deep Learning in 2019 SF Python OctoberDeep Learning in 2019 SF Python October
Deep Learning in 2019 SF Python October
 
Tensorflow 2.0 and Keras: What's new, what's shared, what's different
Tensorflow 2.0 and Keras: What's new, what's shared, what's differentTensorflow 2.0 and Keras: What's new, what's shared, what's different
Tensorflow 2.0 and Keras: What's new, what's shared, what's different
 
Python for Machine Learning and Deep Learning
Python for Machine Learning and Deep LearningPython for Machine Learning and Deep Learning
Python for Machine Learning and Deep Learning
 
Image Similarity Search
Image Similarity SearchImage Similarity Search
Image Similarity Search
 
Tensorflow 2.0 pipeline ai
Tensorflow 2.0 pipeline aiTensorflow 2.0 pipeline ai
Tensorflow 2.0 pipeline ai
 
Intro to deep learning Python Meetup
Intro to deep learning Python MeetupIntro to deep learning Python Meetup
Intro to deep learning Python Meetup
 
Tensorflow 2.0 and Keras ODSC Jan 2019
Tensorflow 2.0 and Keras ODSC Jan 2019Tensorflow 2.0 and Keras ODSC Jan 2019
Tensorflow 2.0 and Keras ODSC Jan 2019
 
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018
Advanced Keras / Global Artificial Intelligence Conference / Santa Clara 2018
 
Advanced Keras
Advanced KerasAdvanced Keras
Advanced Keras
 
Machine Learning: Techniques, Best Practices and Practical Application
Machine Learning: Techniques, Best Practices and Practical ApplicationMachine Learning: Techniques, Best Practices and Practical Application
Machine Learning: Techniques, Best Practices and Practical Application
 
Python libraries for Machine Learning and Deep Learning
Python libraries for Machine Learning and Deep LearningPython libraries for Machine Learning and Deep Learning
Python libraries for Machine Learning and Deep Learning
 
Intro to scikit learn may 2017
Intro to scikit learn may 2017Intro to scikit learn may 2017
Intro to scikit learn may 2017
 

Recently uploaded

9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改yuu sss
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...ssuserf63bd7
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectBoston Institute of Analytics
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...Amil Baba Dawood bangali
 
Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfchwongval
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.natarajan8993
 
Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 217djon017
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 

Recently uploaded (20)

Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
 
Heart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis ProjectHeart Disease Classification Report: A Data Analysis Project
Heart Disease Classification Report: A Data Analysis Project
 
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲中央昆士兰大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
NO1 Certified Black Magic Specialist Expert Amil baba in Lahore Islamabad Raw...
 
Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdf
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.
 
Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 

Introduction to Keras / Global Artificial Intelligence Conference / Santa Clara 2018