SlideShare a Scribd company logo
1 of 101
Download to read offline
AI
2019/06/11 version
AI/
2006 DL:Deep Learning( )
Internet/Cloud
GPU
2012 AlexNet
2016 AlphaGo
LSVRC(Large Scale Visual Recognition Challenge)
ImageNet(http://www.image-net.org/)
1000
CNN
AlexNet
VGGNet
ResNet
GoogLeNet
https://signate.jp/competitions/138
Pix2Pix
https://affinelayer.com/pixsrv/
RNN
Seq2Seq(Sequence to Sequence)
Encoder Decoder
My name is Yamada


End-to-End


/ /
( )
TensorFlow playground
https://playground.tensorflow.org/
1
1
Run!!!
(Node)
y1 = w11x1 + w21x2 + w31x3
x1
x2
x3
w11
w21
w31
y1
y1 = w11x1 + w21x2 + w31x3
x1
x2
x3
w11
w21
w31
y1
W
x1
x2
x3
w11
w21
w31
y1
W
y1 = w11x1 + w21x2 + w31x3
x1
x2
x3
w11
w21
w31
y1
W
y1 = w11x1 + w21x2 + w31x3
x1
x2
x3
y1 = w11x1 + w21x2 + w31x3
y1
x1
x2
x3
y2 = w12x1 + w22x2 + w32x3
y1
y2
x1
x2
x3
y3 = w13x1 + w23x2 + w33x3
y1
y2
y3
x1
x2
x3
y4 = w14x1 + w24x2 + w34x3
y1
y2
y3
y4
x1
x2
x3
z1 = w11y1 + w21y2 + w31y3 + w41y4
y1
y2
y3
y4
z1
x1
x2
x3
z2 = w12y1 + w22y2 + w32y3 + w42y4
y1
y2
y3
y4
z1
z2
x1
x2
x3
z2 = w12y1 + w22y2 + w32y3 + w42y4
y1
y2
y3
y4
z1
z2
SoftMax


(Node) ( ) 

Deep Neural Network(DNN)

→Deep Learning( )
(Weight)
or ( )
DATA
( )
:(Layer )
:(Layer )
:( )
( )
Click
Activation
y1 = w11x1 + w21x2 + w31x3
x1
x2
x3
w11
w21
w31
y1
y1 = f(w11x1 + w21x2 + w31x3)
x1
x2
x3
w11
w21
w31
u f(u)
Linear( )
ReLU
https://dashee87.github.io/deep%20learning/visualising-activation-functions-in-neural-networks/
Tanh
https://dashee87.github.io/deep%20learning/visualising-activation-functions-in-neural-networks/
Sigmoid
https://dashee87.github.io/deep%20learning/visualising-activation-functions-in-neural-networks/
(Forward)

→
(Weight ) 

✔ (Backward)

✔ (Epoch, mini Batch)

✔ (Learning Rate)
(Label) 

(Forward)
(Forward)
(Forward)
(Forward)
(loss)
(loss)
(Backward)
(loss)
(Backward)
(loss)
(Backward)
( ) 3 

train, (eval), test


(over fitting)
Iteration

weight (Forward/Backward:1 )
(mini)Batch size

1iteration
Epoch

1Epoch =
MNIST( )
60,000

10,000

5Epoch, Batch size=32 

60000/32 = 1,875 iteration 5
MNIST( )
60,000

10,000

5Epoch, Batch size=32 

60000/32 = 1,875 iteration 5
(Learning Rate)
weight 

= 

=
Epoch
(train vs test)
Epoch
Batch size
Loss
Learning rate
Training( Show test
data test )
batch size=10, 30 training loss=0.001
Epoch
Learning rate=1 Training

Learning rate=0.001 Training
1




weight
TensorFlow Playground
2




Optimizer, Weight Decay
/
df(x)
dx
= lim
h→0
f(x + h) − f(x)
h
df(x)
dx
= lim
h→0
f(x + h) − f(x − h)
2h
f(x0, x1) = x2
0 + x2
1
(
∂f
∂x0
,
∂f
∂x1 )
(gradient)
f(x0, x1) = x2
0 + x2
1
f(x0, x1) = sin(x0) + cos(x1)








< >


< >


x0 = x0 −
∂f
∂x0
x0 = x0−η
∂f
∂x0
η: (Learning Rate)
η = 0.01f(x0, x1) = x2
0 + x2
1
η = 1.1f(x0, x1) = x2
0 + x2
1
η = 0.001f(x0, x1) = x2
0 + x2
1
Optimizer




Y = WX
W =
w11 w12 w13 w14
w21 w22 w23 w24
w31 w32 w33 w34
x1
x2
x3
y1
y2
y3
y4
SGD
Stochastic Gradient Descent

W ← W − η
∂L
∂W
SGD
Stochastic Gradient Descent
W ← W − η
∂L
∂W
Momentum
v ← av − η
∂L
∂W
W ← W + v
AdaGrad
h ← h +
∂L
∂W
⊙
∂L
∂W
W ← W − η
1
h
∂L
∂W
Adam
Momentum+AdaGrad
mt ← β1mt−1 + (1 − β1)gt
θt+1 ← θt − α
̂mt
̂vt + ϵ
vt ← β2vt−1 + (1 − β2)g2
t
̂mt ←
mt
1 − βt
1
̂vt ←
vt
1 − βt
2
β1 = 0.9,β2 = 0.999,ϵ = 10−8
gt =
∂L
∂W
θt = W α = η
αt = α
(1 − βt
2)
(1 − βt
1)
θt+1 ← θt − αt
mt
vt + ̂ϵ
Adam
Momentum+AdaGrad
mt ← β1mt−1 + (1 − β1)
∂L
∂W
vt ← β2vt−1 + (1 − β2)(
∂L
∂W
⊙
∂L
∂W )
ηt = η
(1 − βt
2)
(1 − βt
1)
W ← W − ηt
mt
vt + ̂ϵ
Optimizer


- RMSprop, Adadelta, AMSGrad

- Adabound, AMSbound


Adam
Adam, SGD
Adabound
η*
∞
t
η
SGD
Adam:
(0)→
※
Adabound:
/
SGD
Adabound
←β
α( )
Adabound
Weight Decay
(overfitting) 

(Weight) 

SGD
W ← W − η
∂L
∂W
− ηλW
λ :Weight Decay
Loss L2
W ← W − η
∂L
∂W
− ηλW
̂L(W) = L(W) +
λ
2
∥W∥2
L2 (Ridge):
L1 (LASSO):
w2
1 + w2
2 + ⋯ + w2
n
|w1 | + |w2 | + ⋯ + |wn |
Tips:Adam ?
Adam Optimizer
Weight Decay
!?
Decoupled Weight Decay Regularization

https://arxiv.org/abs/1711.05101
( )
Y = (WX + b)2
s = z + b
Y = s2
z = WX




( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s


( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s
∂L
∂Y


( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s
∂L
∂Y
∂Y
∂s
= 2s
2s
∂L
∂Y


( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y


( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
∂z
∂X
2s
∂L
∂Y
( )
✖ ^2X Y
W
b
s = z + b Y = s2z = WX
z s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
∂z
∂X
2s
∂L
∂Y
∂z
∂W
2s
∂L
∂Y


(/ )
✖ ^2X Y
W
b
z s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
2s
∂L
∂Y
∂z
∂X
2s
∂L
∂Y
∂z
∂W
2s
∂L
∂Y
( )
ZERO
2




SGD Optimizer
3 CNN

More Related Content

What's hot

Block diagram Examples
Block diagram ExamplesBlock diagram Examples
Block diagram ExamplesSagar Kuntumal
 
Multi-Jet Generation -status report-
Multi-Jet Generation -status report-Multi-Jet Generation -status report-
Multi-Jet Generation -status report-Yoshitaro Takaesu
 
Overlap Layout Consensus assembly
Overlap Layout Consensus assemblyOverlap Layout Consensus assembly
Overlap Layout Consensus assemblyZhuyi Xue
 
深層強化学習 × 自律移動ロボット
深層強化学習 × 自律移動ロボット深層強化学習 × 自律移動ロボット
深層強化学習 × 自律移動ロボットJumpei Arima
 
Block Reduction Method
Block Reduction MethodBlock Reduction Method
Block Reduction MethodSmit Shah
 
Scaling the #2ndhalf
Scaling the #2ndhalfScaling the #2ndhalf
Scaling the #2ndhalfSalo Shp
 
Block reduction technique
Block reduction techniqueBlock reduction technique
Block reduction techniquerajkumar ch
 
Grincon U.S. 2019 How to Mine Grin
Grincon U.S. 2019 How to Mine GrinGrincon U.S. 2019 How to Mine Grin
Grincon U.S. 2019 How to Mine GrinKaren Hsu
 

What's hot (9)

Block diagram Examples
Block diagram ExamplesBlock diagram Examples
Block diagram Examples
 
Multi-Jet Generation -status report-
Multi-Jet Generation -status report-Multi-Jet Generation -status report-
Multi-Jet Generation -status report-
 
Overlap Layout Consensus assembly
Overlap Layout Consensus assemblyOverlap Layout Consensus assembly
Overlap Layout Consensus assembly
 
深層強化学習 × 自律移動ロボット
深層強化学習 × 自律移動ロボット深層強化学習 × 自律移動ロボット
深層強化学習 × 自律移動ロボット
 
Introduction to MATLAB
Introduction to MATLAB Introduction to MATLAB
Introduction to MATLAB
 
Block Reduction Method
Block Reduction MethodBlock Reduction Method
Block Reduction Method
 
Scaling the #2ndhalf
Scaling the #2ndhalfScaling the #2ndhalf
Scaling the #2ndhalf
 
Block reduction technique
Block reduction techniqueBlock reduction technique
Block reduction technique
 
Grincon U.S. 2019 How to Mine Grin
Grincon U.S. 2019 How to Mine GrinGrincon U.S. 2019 How to Mine Grin
Grincon U.S. 2019 How to Mine Grin
 

Similar to 20190611 Study Neural Network

The Ring programming language version 1.5.4 book - Part 59 of 185
The Ring programming language version 1.5.4 book - Part 59 of 185The Ring programming language version 1.5.4 book - Part 59 of 185
The Ring programming language version 1.5.4 book - Part 59 of 185Mahmoud Samir Fayed
 
The Ring programming language version 1.6 book - Part 62 of 189
The Ring programming language version 1.6 book - Part 62 of 189The Ring programming language version 1.6 book - Part 62 of 189
The Ring programming language version 1.6 book - Part 62 of 189Mahmoud Samir Fayed
 
Agilent ADS 模擬手冊 [實習2] 放大器設計
Agilent ADS 模擬手冊 [實習2]  放大器設計Agilent ADS 模擬手冊 [實習2]  放大器設計
Agilent ADS 模擬手冊 [實習2] 放大器設計Simen Li
 
The Ring programming language version 1.9 book - Part 69 of 210
The Ring programming language version 1.9 book - Part 69 of 210The Ring programming language version 1.9 book - Part 69 of 210
The Ring programming language version 1.9 book - Part 69 of 210Mahmoud Samir Fayed
 
SICP勉強会について
SICP勉強会についてSICP勉強会について
SICP勉強会についてYusuke Sasaki
 
Cocos2d実践編 1.0.0rc
Cocos2d実践編 1.0.0rcCocos2d実践編 1.0.0rc
Cocos2d実践編 1.0.0rcYuichi Higuchi
 
Communication systems solution manual 5th edition
Communication systems solution manual 5th editionCommunication systems solution manual 5th edition
Communication systems solution manual 5th editionTayeen Ahmed
 
The Ring programming language version 1.5.3 book - Part 69 of 184
The Ring programming language version 1.5.3 book - Part 69 of 184The Ring programming language version 1.5.3 book - Part 69 of 184
The Ring programming language version 1.5.3 book - Part 69 of 184Mahmoud Samir Fayed
 
Formulario de Calculo Diferencial-Integral
Formulario de Calculo Diferencial-IntegralFormulario de Calculo Diferencial-Integral
Formulario de Calculo Diferencial-IntegralErick Chevez
 
NTHU AI Reading Group: Improved Training of Wasserstein GANs
NTHU AI Reading Group: Improved Training of Wasserstein GANsNTHU AI Reading Group: Improved Training of Wasserstein GANs
NTHU AI Reading Group: Improved Training of Wasserstein GANsMark Chang
 
Formulario oficial-calculo
Formulario oficial-calculoFormulario oficial-calculo
Formulario oficial-calculoFavian Flores
 
7nm "Navi" GPU - A GPU Built For Performance
7nm "Navi" GPU - A GPU Built For Performance 7nm "Navi" GPU - A GPU Built For Performance
7nm "Navi" GPU - A GPU Built For Performance AMD
 
Neural Network - Feed Forward - Back Propagation Visualization
Neural Network - Feed Forward - Back Propagation VisualizationNeural Network - Feed Forward - Back Propagation Visualization
Neural Network - Feed Forward - Back Propagation VisualizationTraian Morar
 
微積分定理與公式
微積分定理與公式微積分定理與公式
微積分定理與公式zoayzoay
 
Formulario derivadas e integrales
Formulario derivadas e integralesFormulario derivadas e integrales
Formulario derivadas e integralesGeovanny Jiménez
 

Similar to 20190611 Study Neural Network (20)

The Ring programming language version 1.5.4 book - Part 59 of 185
The Ring programming language version 1.5.4 book - Part 59 of 185The Ring programming language version 1.5.4 book - Part 59 of 185
The Ring programming language version 1.5.4 book - Part 59 of 185
 
The Ring programming language version 1.6 book - Part 62 of 189
The Ring programming language version 1.6 book - Part 62 of 189The Ring programming language version 1.6 book - Part 62 of 189
The Ring programming language version 1.6 book - Part 62 of 189
 
Agilent ADS 模擬手冊 [實習2] 放大器設計
Agilent ADS 模擬手冊 [實習2]  放大器設計Agilent ADS 模擬手冊 [實習2]  放大器設計
Agilent ADS 模擬手冊 [實習2] 放大器設計
 
The Ring programming language version 1.9 book - Part 69 of 210
The Ring programming language version 1.9 book - Part 69 of 210The Ring programming language version 1.9 book - Part 69 of 210
The Ring programming language version 1.9 book - Part 69 of 210
 
SICP勉強会について
SICP勉強会についてSICP勉強会について
SICP勉強会について
 
Cocos2d実践編 1.0.0rc
Cocos2d実践編 1.0.0rcCocos2d実践編 1.0.0rc
Cocos2d実践編 1.0.0rc
 
Communication systems solution manual 5th edition
Communication systems solution manual 5th editionCommunication systems solution manual 5th edition
Communication systems solution manual 5th edition
 
The Ring programming language version 1.5.3 book - Part 69 of 184
The Ring programming language version 1.5.3 book - Part 69 of 184The Ring programming language version 1.5.3 book - Part 69 of 184
The Ring programming language version 1.5.3 book - Part 69 of 184
 
Formulario de Calculo Diferencial-Integral
Formulario de Calculo Diferencial-IntegralFormulario de Calculo Diferencial-Integral
Formulario de Calculo Diferencial-Integral
 
NTHU AI Reading Group: Improved Training of Wasserstein GANs
NTHU AI Reading Group: Improved Training of Wasserstein GANsNTHU AI Reading Group: Improved Training of Wasserstein GANs
NTHU AI Reading Group: Improved Training of Wasserstein GANs
 
Formulario oficial-calculo
Formulario oficial-calculoFormulario oficial-calculo
Formulario oficial-calculo
 
Formulario calculo
Formulario calculoFormulario calculo
Formulario calculo
 
7nm "Navi" GPU - A GPU Built For Performance
7nm "Navi" GPU - A GPU Built For Performance 7nm "Navi" GPU - A GPU Built For Performance
7nm "Navi" GPU - A GPU Built For Performance
 
Clase 15 dsp
Clase 15 dspClase 15 dsp
Clase 15 dsp
 
Neural Network - Feed Forward - Back Propagation Visualization
Neural Network - Feed Forward - Back Propagation VisualizationNeural Network - Feed Forward - Back Propagation Visualization
Neural Network - Feed Forward - Back Propagation Visualization
 
微積分定理與公式
微積分定理與公式微積分定理與公式
微積分定理與公式
 
Formulario derivadas e integrales
Formulario derivadas e integralesFormulario derivadas e integrales
Formulario derivadas e integrales
 
Formulario
FormularioFormulario
Formulario
 
Formulario calculo
Formulario calculoFormulario calculo
Formulario calculo
 
Formulas de calculo
Formulas de calculoFormulas de calculo
Formulas de calculo
 

Recently uploaded

COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementDr. Deepak Mudgal
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...HenryBriggs2
 
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...dannyijwest
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessorAshwiniTodkar4
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information SystemsAnge Felix NSANZIYERA
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
Adsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptAdsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptjigup7320
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...josephjonse
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Ramkumar k
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...ssuserdfc773
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxpritamlangde
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
Electromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptxElectromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptxNANDHAKUMARA10
 
Fundamentals of Internet of Things (IoT) Part-2
Fundamentals of Internet of Things (IoT) Part-2Fundamentals of Internet of Things (IoT) Part-2
Fundamentals of Internet of Things (IoT) Part-2ChandrakantDivate1
 

Recently uploaded (20)

COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth Reinforcement
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
 
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...
Cybercrimes in the Darknet and Their Detections: A Comprehensive Analysis and...
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Adsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) pptAdsorption (mass transfer operations 2) ppt
Adsorption (mass transfer operations 2) ppt
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
Convergence of Robotics and Gen AI offers excellent opportunities for Entrepr...
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
Electromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptxElectromagnetic relays used for power system .pptx
Electromagnetic relays used for power system .pptx
 
Fundamentals of Internet of Things (IoT) Part-2
Fundamentals of Internet of Things (IoT) Part-2Fundamentals of Internet of Things (IoT) Part-2
Fundamentals of Internet of Things (IoT) Part-2
 

20190611 Study Neural Network